-
Notifications
You must be signed in to change notification settings - Fork 0
/
record.rb
2800 lines (2800 loc) · 901 KB
/
record.rb
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
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1", :city=>"Pontiac", :teamnumber=>"1", :country=>"USA", :state=>"MI", :rookieyear=>"1997", :robotname=>"Juggy", :name=>"The Chrysler Foundation/BAE Systems & Oakland Schools Technical Campus Northeast High School", :website=>"", :informalname=>"The Juggernauts"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=4", :city=>"Van Nuys", :teamnumber=>"4", :country=>"USA", :state=>"CA", :rookieyear=>"1997", :robotname=>"Katie", :name=>"Boeing/Milken Family Foundation/Raytheon/Roberts Tool Co./The Carcannon Corp & HighTech-LA High School", :website=>"http://www.team4elements.com", :informalname=>"Team 4 ELEMENT"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=5", :city=>"Melvindale", :teamnumber=>"5", :country=>"", :state=>" MI", :rookieyear=>"1998", :robotname=>"The Guillotine", :name=>"Ford FIRST Robotics & Melvindale High School", :website=>"http://www.robocards.org/", :informalname=>"Robocards"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=6", :city=>"Plymouth, MN", :teamnumber=>"6", :country=>"", :state=>"", :rookieyear=>"1994", :robotname=>"", :name=>"ATK (Alliant Techsystems) & Plymouth Area Schools", :website=>"http://www.cogsquad.com/", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=7", :city=>"Baltimore", :teamnumber=>"7", :country=>"USA", :state=>"MD", :rookieyear=>"1997", :robotname=>"Thunderbot II", :name=>"NASA/JC Penney/Towsontowne Rotary/Baltimore Area Alliance/JCPenney & Parkville High School and Center for Mathematics, Science, and Computer Science", :website=>"http://www.team007.org", :informalname=>"Team007"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=8", :city=>"Palo Alto", :teamnumber=>"8", :country=>"USA", :state=>"CA", :rookieyear=>"1996", :robotname=>"Týr", :name=>"The Boeing Company & Palo Alto High School", :website=>"http://www.palyrobotics.com", :informalname=>"The Vikings"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=9", :city=>"Chicago", :teamnumber=>"9", :country=>"", :state=>" IL", :rookieyear=>"1998", :robotname=>"", :name=>"Roosevelt High School", :website=>"http://www.roboriders9.com", :informalname=>"Roosevelt RoboRiders"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=10", :city=>",", :teamnumber=>"10", :country=>"", :state=>"", :rookieyear=>"1998", :robotname=>"", :name=>"Benilde-St. Margaret's School", :website=>"", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=11", :city=>"Flanders", :teamnumber=>"11", :country=>"USA", :state=>"NJ", :rookieyear=>"1997", :robotname=>"MORT", :name=>"BAE Systems/Givaudan/John and Margaret Post Foundation/Siemen's & Mt. Olive Robotics Team", :website=>"http://www.mortteam11.org", :informalname=>"MORT"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=16", :city=>"Mountain Home", :teamnumber=>"16", :country=>"USA", :state=>"AR", :rookieyear=>"1996", :robotname=>"Two Minute Warning", :name=>"Baxter Healthcare Corp/The Science and Technology Group & Mountain Home High School", :website=>"http://baxterbombsquad.com", :informalname=>"Bomb Squad"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=19", :city=>"Greenwich", :teamnumber=>"19", :country=>"", :state=>" CT", :rookieyear=>"1992", :robotname=>"", :name=>"", :website=>"http://www.ghsteam19.com", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=20", :city=>"Clifton Park", :teamnumber=>"20", :country=>"USA", :state=>"NY", :rookieyear=>"1992", :robotname=>"RALPH", :name=>"Viatalk/General Electric Volunteers/Rensselaer Polytechnic Institute/BAE SYSTEMS/Advanced Manufacturing Techniques Inc./Bank of America & Shenendehowa High School", :website=>"http://www.team20.com", :informalname=>"The Rocketeers"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=21", :city=>"Titusville", :teamnumber=>"21", :country=>"USA", :state=>"FL", :rookieyear=>"1998", :robotname=>"Buster McThunderstick", :name=>"Boeing/ASRC/GovConnection/Planet Fitness of Daytona & Astronaut High School & Titusville High School", :website=>"http://www.combbat21.com/", :informalname=>"ComBBAT"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=22", :city=>"Chatsworth", :teamnumber=>"22", :country=>"", :state=>" CA", :rookieyear=>"1997", :robotname=>"", :name=>"Chatsworth High School", :website=>"http://www.team22.org/", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=25", :city=>"North Brunswick", :teamnumber=>"25", :country=>"USA", :state=>"NJ", :rookieyear=>"1997", :robotname=>"Evil Machine 6", :name=>"Bristol-Myers Squibb/Infrared Remote Solutions & North Brunswick Twp. High School", :website=>"http://www.raiderrobotix.org", :informalname=>"Raider Robotix"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=27", :city=>"Clarkston", :teamnumber=>"27", :country=>"USA", :state=>"MI", :rookieyear=>"1997", :robotname=>"Gold RUSH", :name=>"The Chrysler Foundation/Schenck Rotec/Guardian Industries/Robert Bosch Corporation/Barton Malow Rigging/Clarkston Rotary/Recticel North America Inc./Applied Manufacturing Technologies/Segway Of Toledo/Terumo Cardiovascular Systems & Clarkston Schools & CSMTech Academy at Clarkston High School", :website=>"http://www.teamrush27.net", :informalname=>"Team RUSH"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=28", :city=>"Sag Harbor", :teamnumber=>"28", :country=>"USA", :state=>"NY", :rookieyear=>"1996", :robotname=>"Mission Impossible", :name=>"Pierson High School", :website=>"", :informalname=>"Pierson Whalers"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=30", :city=>"Lincroft, NJ", :teamnumber=>"30", :country=>"", :state=>"", :rookieyear=>"1998", :robotname=>"", :name=>"Bristol-Myers Squibb", :website=>"http://www.hthsfury.org", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=31", :city=>"Jenks", :teamnumber=>"31", :country=>"USA", :state=>"OK", :rookieyear=>"1997", :robotname=>"", :name=>"Boeing/AEP/University of Tulsa & Jenks High School", :website=>"http://www.ens.utulsa.edu/first/Jenks", :informalname=>"Prime Movers"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=33", :city=>"Auburn Hills", :teamnumber=>"33", :country=>"USA", :state=>"MI", :rookieyear=>"1996", :robotname=>"Buzz 13", :name=>"The Chrysler Foundation & Notre Dame Preparatory", :website=>"http://www.killerbees33.com/", :informalname=>"Killer Bees"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=34", :city=>"Athens", :teamnumber=>"34", :country=>"USA", :state=>"AL", :rookieyear=>"1997", :robotname=>"Apollo", :name=>"Boeing/BAE Systems/AUVSI & Limestone County Career Technical Center High School", :website=>"http://www.rockets34.com", :informalname=>"Rockets"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=35", :city=>"Whitehall, MI", :teamnumber=>"35", :country=>"", :state=>"", :rookieyear=>"1997", :robotname=>"", :name=>"Alcoa - Howmet Casting & Montague High School", :website=>"http://www.whitelakerobotics.org", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=38", :city=>"Woodbury", :teamnumber=>"38", :country=>"", :state=>" CT", :rookieyear=>"1998", :robotname=>"", :name=>"Nonnewaug High School", :website=>"http://www.nonnebots.com", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=39", :city=>"Gilbert", :teamnumber=>"39", :country=>"USA", :state=>"AZ", :rookieyear=>"1998", :robotname=>"", :name=>"Boeing / SIMREX Corporation & Highland High School", :website=>"http://www.HHSRobotics.org", :informalname=>"The 39th Aero Squadron"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=40", :city=>"Manchester", :teamnumber=>"40", :country=>"USA", :state=>"NH", :rookieyear=>"1998", :robotname=>"Red Card", :name=>"intelitek & Trinity High School", :website=>"http://www.checkmate40.com", :informalname=>"Checkmate"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=41", :city=>"Warren", :teamnumber=>"41", :country=>"USA", :state=>"NJ", :rookieyear=>"1997", :robotname=>"", :name=>"KnottsCo/ANADIGICS/Watchung Hills Technology Association & Watchung Hills Regional High School", :website=>"http://www.team41robotics.com", :informalname=>"Warriors"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=42", :city=>"Hudson", :teamnumber=>"42", :country=>"", :state=>" NH", :rookieyear=>"1995", :robotname=>"", :name=>"Daniel Webster College/HydroCam Corporation & Alvirne H.S.", :website=>"http://www.mv.com/org/alvirne-first/", :informalname=>"P.A.R.T.S. (Precision Alvirne Robotics Team Systems)"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=45", :city=>"Kokomo", :teamnumber=>"45", :country=>"USA", :state=>"IN", :rookieyear=>"1992", :robotname=>"Jake Blues", :name=>"Delphi/NASA/AndyMark, Inc./Duke Energy/Indiana Department of Workforce Development & Kokomo Center School Corporation High School", :website=>"http://www.technokats.org/", :informalname=>"TechnoKats Robotics Team"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=47", :city=>"Pontiac", :teamnumber=>"47", :country=>"USA", :state=>"MI", :rookieyear=>"1996", :robotname=>"Chief", :name=>"Delphi Corporation/The Chrysler Foundation & Pontiac Central High School", :website=>"http://www.chiefdelphi.com/", :informalname=>"Chief Delphi"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=48", :city=>"Warren", :teamnumber=>"48", :country=>"USA", :state=>"OH", :rookieyear=>"1998", :robotname=>"Xtremachen 12", :name=>"NASA/Delphi Corporation & Warren G. Harding High School", :website=>"http://www.delphielite.com/", :informalname=>"Delphi E.L.I.T.E."}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=49", :city=>"Saginaw", :teamnumber=>"49", :country=>"USA", :state=>"MI", :rookieyear=>"1998", :robotname=>"Excalabur", :name=>"Dow Chemical Company/Delphi Steering Systems/Sign Depot/ALRO Steel/KMT Robot Solutions & Buena Vista High School", :website=>"http://linux.bvsd.us/website/index.php?subpage_id=149&page_id=41", :informalname=>"Robotic Knights"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=51", :city=>"Pontiac", :teamnumber=>"51", :country=>"USA", :state=>"MI", :rookieyear=>"1996", :robotname=>"", :name=>"GM Powertrain Group/Delphi/The Chrysler Foundation & Pontiac High School", :website=>"", :informalname=>"Wings of Fire"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=53", :city=>"Greenbelt", :teamnumber=>"53", :country=>"USA", :state=>"MD", :rookieyear=>"1998", :robotname=>"", :name=>"BAE Systems/General Dynamics/Lockheed Martin/U. S. Army Research Laboratory & Eleanor Roosevelt High School", :website=>"http://eroosevelths.pgcps.org/~pruett/", :informalname=>"Area 53"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=56", :city=>"Bound Brook", :teamnumber=>"56", :country=>"USA", :state=>"NJ", :rookieyear=>"1997", :robotname=>"Robbe", :name=>"Ethicon & Bound Brook High School", :website=>"http://www.team56.com", :informalname=>"Robbe Xtreme"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=57", :city=>"Houston", :teamnumber=>"57", :country=>"USA", :state=>"TX", :rookieyear=>"1998", :robotname=>"Big Cat 12", :name=>"ExxonMobil/Hydraquip/KBR/Powell Electric/Walter P. Moore/Andy's Hardware & Booker T. Washington & High School for Engineering Professions", :website=>"http://www.leopards57.com", :informalname=>"Leopards"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=58", :city=>"South Portland", :teamnumber=>"58", :country=>"USA", :state=>"ME", :rookieyear=>"1996", :robotname=>"Red Riot", :name=>"Fairchild Semiconductor & South Portland High School", :website=>"http://www.riotcrew.org", :informalname=>"Riot Crew"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=59", :city=>"Miami", :teamnumber=>"59", :country=>"USA", :state=>"FL", :rookieyear=>"1997", :robotname=>"NANO", :name=>"Miami Coral Park Sr. High School & MCPHS Engineering Magnet Program & Miami-Dade County Schools Technology Education Porgram", :website=>"http://ramtech59.dadeschools.net", :informalname=>"Ramtech"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=60", :city=>"Kingman", :teamnumber=>"60", :country=>"USA", :state=>"AZ", :rookieyear=>"1997", :robotname=>"", :name=>"Laron Incorporated/Bearing, Belt, Chain (Purvis Industries)/Mohave Community College/Brackett Aircraft/Chrysler Proving Grounds/Praxair & KUSD #20 Kingman High School & Kingman Academy of Learning High School", :website=>"", :informalname=>"Bionic Bulldogs"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=61", :city=>"Upton", :teamnumber=>"61", :country=>"USA", :state=>"MA", :rookieyear=>"1995", :robotname=>"BVT2", :name=>"EMC/QinetiQ North America/National Grid/Pegasus, Inc./Anver Corporation/Lee Company/Allegro Microsystem Inc./Access/Douglas Festival Committee/Blackstone Valley Vocational Regional School District & Blackstone Valley Regional Vocational Technical High School", :website=>"http://www.valleytech.k12.ma.us/robotics", :informalname=>"Shifters"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=63", :city=>"Erie", :teamnumber=>"63", :country=>"USA", :state=>"PA", :rookieyear=>"1997", :robotname=>"Red Baron", :name=>"GE Volunteers & McDowell High School & Fairview High School", :website=>"http://www.redbarons63.com", :informalname=>"The Red Barons"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=64", :city=>"Mesa", :teamnumber=>"64", :country=>"", :state=>" AZ", :rookieyear=>"1998", :robotname=>"", :name=>"", :website=>"http://www.gilamonster.org/", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=65", :city=>"Pontiac", :teamnumber=>"65", :country=>"USA", :state=>"MI", :rookieyear=>"1997", :robotname=>"PowerDawg", :name=>"GM Powertrain & Pontiac Northern High School", :website=>"http://www.huskiebrigade.com/", :informalname=>"The Huskie Brigade"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=66", :city=>"Ypsilanti", :teamnumber=>"66", :country=>"USA", :state=>"MI", :rookieyear=>"1998", :robotname=>"Crater", :name=>"General Motors Powertrain Corp & Willow Run High School", :website=>"http://www.team66.com/", :informalname=>"The Flyers"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=67", :city=>"Milford", :teamnumber=>"67", :country=>"USA", :state=>"MI", :rookieyear=>"1997", :robotname=>"HOTBOT", :name=>"General Motors Milford Proving Ground & Huron Valley Schools", :website=>"http://www2.huronvalley.k12.mi.us/schools/mhs/activity/hot_team/index1.htm", :informalname=>"The HOT Team"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=68", :city=>"Pontiac", :teamnumber=>"68", :country=>"USA", :state=>"MI", :rookieyear=>"1998", :robotname=>"T3", :name=>"General Motors Engineering Structural Development Laboratories/3 Dimensional Services & Oakland County Area Schools", :website=>"", :informalname=>"T3"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=69", :city=>"Quincy", :teamnumber=>"69", :country=>"USA", :state=>"MA", :rookieyear=>"1998", :robotname=>"HYPER Drive", :name=>"P&G & Quincy Public Schools", :website=>"http://www.hyper-robotics.net/", :informalname=>"Team HYPER (Helping Youth Pursue Engineering and Robotics)"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=70", :city=>"Goodrich", :teamnumber=>"70", :country=>"USA", :state=>"MI", :rookieyear=>"1998", :robotname=>"My Other Favorite Robot", :name=>"Chrysler Foundation/General Motors/Kettering University/ITT & Goodrich High School", :website=>"", :informalname=>"More Martians"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=71", :city=>"Hammond", :teamnumber=>"71", :country=>"USA", :state=>"IN", :rookieyear=>"1996", :robotname=>"The Beast", :name=>"Beatty International/Caterpillar/City of Hammond & School City of Hammond", :website=>"http://www.hammond.k12.in.us/TeamHammond", :informalname=>"Team Hammond"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=73", :city=>"Rochester", :teamnumber=>"73", :country=>"USA", :state=>"NY", :rookieyear=>"1995", :robotname=>"", :name=>"Bausch & Lomb Incorporated/Ortho-Clinical Diagnostics, Inc./BAE Systems & Edison School of Engineering & Manufacturing High School", :website=>"http://www.team73.org", :informalname=>"The Visioneers"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=74", :city=>"Holland", :teamnumber=>"74", :country=>"USA", :state=>"MI", :rookieyear=>"1995", :robotname=>"", :name=>"PTC / Haworth Inc. & Holland High School", :website=>"http://www.hollandchaos.com", :informalname=>"Team C.H.A.O.S."}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=75", :city=>"Hillsborough", :teamnumber=>"75", :country=>"USA", :state=>"NJ", :rookieyear=>"1996", :robotname=>"Fridger-Raider", :name=>"J&J Consumer and Personal Products Worldwide - & Hillsborough High School", :website=>"http://www.roboraiders.com/", :informalname=>"RoboRaiders"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=78", :city=>"Newport County", :teamnumber=>"78", :country=>"USA", :state=>"RI", :rookieyear=>"1996", :robotname=>"", :name=>"Naval Undersea Warfare Center / National Defense Education Program / JCPenney After School Fund / Raytheon / BAE Systems & Aquidneck Island Robotics 4-H Club", :website=>"http://www.air4h.org", :informalname=>"AIR Strike"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=79", :city=>"Tarpon Springs", :teamnumber=>"79", :country=>"USA", :state=>"FL", :rookieyear=>"1998", :robotname=>"Krunch 12", :name=>"Honeywell Inc/Career Technical Education Foundation, Inc. & East Lake High School", :website=>"http://www.teamkrunch.com/", :informalname=>"Team Krunch"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=80", :city=>"Phoenix", :teamnumber=>"80", :country=>"", :state=>" AZ", :rookieyear=>"1994", :robotname=>"", :name=>"", :website=>"http://robocolt.jt.org", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=81", :city=>"Freeport", :teamnumber=>"81", :country=>"USA", :state=>"IL", :rookieyear=>"1994", :robotname=>"Apollo 81", :name=>"Fehr Graham & Associates/FHN/Honeywell/Hughes Resources/Kiwanis Morning Club/Mechanical Inc/Pacific ScientificDanaher Motion/The Morse Group & Freeport High School-Lena Winslow-Pearl City High School", :website=>"http://www.freeportfirst.com", :informalname=>"MetalHeads"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=84", :city=>"Towanda", :teamnumber=>"84", :country=>"USA", :state=>"PA", :rookieyear=>"1998", :robotname=>"Chuck", :name=>"DuPont/NE PA Tech Prep Consortium & Athens Area School District & Northeast Bradford School District & Towanda Area School District & Troy Area School District", :website=>"http://www.chuck84.org/", :informalname=>"Chuck 84"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=85", :city=>"Zeeland", :teamnumber=>"85", :country=>"USA", :state=>"MI", :rookieyear=>"1996", :robotname=>"BOB", :name=>"Herman Miller Foundation / Trans-matic / ITW Drawform / Request Foods / Mead Johnson Nutritionals / Gentex / ODL, INC. / Midway Machine Techlologies / Town & Country Group / Plascore / Consumers Energy & Zeeland West High School & Zeeland East High School", :website=>"http://www.zeeland.k12.mi.us/zhs/firstteam/index.html", :informalname=>"B.O.B. (Built on Brains)"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=86", :city=>"Jacksonville", :teamnumber=>"86", :country=>"USA", :state=>"FL", :rookieyear=>"1998", :robotname=>"OHMER", :name=>"JCPenney/JEA/Johnson & Johnson VISTAKON & Stanton College Preparatory School", :website=>"http://www.teamresistance.org", :informalname=>"Team Resistance"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=87", :city=>"Mount Holly", :teamnumber=>"87", :country=>"USA", :state=>"NJ", :rookieyear=>"1997", :robotname=>"Diablo", :name=>"Lockheed Martin & Rancocas Valley Regional High School", :website=>"http://www.rvr87.org/", :informalname=>"Red Devils"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=88", :city=>"Bridgewater", :teamnumber=>"88", :country=>"USA", :state=>"MA", :rookieyear=>"1996", :robotname=>"TJ2", :name=>"DePuy, Johnson & Johnson Companies & Bridgewater Raynam Regional High School", :website=>"http://www.tj2.org", :informalname=>"TJ(Squared)"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=92", :city=>"Lincolnshire", :teamnumber=>"92", :country=>"", :state=>" IL", :rookieyear=>"1997", :robotname=>"", :name=>"", :website=>"", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=93", :city=>"Appleton", :teamnumber=>"93", :country=>"USA", :state=>"WI", :rookieyear=>"1997", :robotname=>"Tobor 12", :name=>"Plexus Corporation & Appleton Area School District", :website=>"http://www.nacteam93.com", :informalname=>"N.E.W. Apple Corps Robotics"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=94", :city=>"Southfield", :teamnumber=>"94", :country=>"USA", :state=>"MI", :rookieyear=>"1998", :robotname=>"TJ V.11", :name=>"ITT Technical Institue & Southfield High School", :website=>"http://Team94.us", :informalname=>"The Technojays"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=95", :city=>"Lebanon", :teamnumber=>"95", :country=>"USA", :state=>"NH", :rookieyear=>"1997", :robotname=>"", :name=>"Thayer School of Engineering at Dartmouth College/NH Charitable Foundation/Chroma Technology/Cedarwood Technical Service/Hypertherm/Chicago Soft, Ltd/Warren Loomis/Geokon, Inc. & Lebanon High School", :website=>"http://www.team95.org", :informalname=>"Grasshoppers"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=96", :city=>"Springfield", :teamnumber=>"96", :country=>"", :state=>" MA", :rookieyear=>"1997", :robotname=>"", :name=>"PUTNAM VOCATIONAL", :website=>"http://www.team96jester.org", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=97", :city=>"Cambridge", :teamnumber=>"97", :country=>"USA", :state=>"MA", :rookieyear=>"1996", :robotname=>"", :name=>"MIT/Vecna Technologies, Inc/Draper Laboratories/Bluefin Robotics & Cambridge Rindge and Latin High School", :website=>"http://web.mit.edu/first/www/", :informalname=>"RoboRuminants"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=100", :city=>"Woodside", :teamnumber=>"100", :country=>"USA", :state=>"CA", :rookieyear=>"1998", :robotname=>"", :name=>"PDI Dreamworks/Woodside High School Foundation/SRI International & Woodside High School & Carlmont High School & Sequoia High School & Sequoia Union High School District", :website=>"http://www.team100.org", :informalname=>"The WildHats"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=101", :city=>"Chicago", :teamnumber=>"101", :country=>"USA", :state=>"IL", :rookieyear=>"1997", :robotname=>"", :name=>"SRT-Nypro & Saint Patrick High School", :website=>"", :informalname=>"Striker"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=102", :city=>"Somerville", :teamnumber=>"102", :country=>"USA", :state=>"NJ", :rookieyear=>"1998", :robotname=>"Orion", :name=>"Ortho Clinical Diagnostics & Somerville High School", :website=>"http://www.team102.org", :informalname=>"The Gearheads"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=103", :city=>"Kintnersville", :teamnumber=>"103", :country=>"USA", :state=>"PA", :rookieyear=>"1997", :robotname=>"", :name=>"Amplifier-Research/BAE Systems/Lutron Electronics, Inc/Glen Magnetics/Harro Hoflinger/Day Tool/Custom Finishers/Hot Chalk/PHTool/Speranza Brickworks, Inc. & Palisades High School", :website=>"http://www.cybersonics.org/", :informalname=>"Cybersonics"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=104", :city=>"West Chester", :teamnumber=>"104", :country=>"USA", :state=>"PA", :rookieyear=>"1998", :robotname=>"", :name=>"MEI & WCASD High Schools", :website=>"http://www.team104.com", :informalname=>"Team Universal"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=107", :city=>"Holland", :teamnumber=>"107", :country=>"USA", :state=>"MI", :rookieyear=>"1997", :robotname=>"Flo", :name=>"Metal Flow Corp. & Holland Christian High School", :website=>"http://www.team107.org/", :informalname=>"Team R.O.B.O.T.I.C.S."}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=108", :city=>"Ft. Lauderdale", :teamnumber=>"108", :country=>"USA", :state=>"FL", :rookieyear=>"1995", :robotname=>"Sigmacat", :name=>"Motorola, Inc & Dillard High School & Taravella High School", :website=>"http://www.SigmaCat108.com/", :informalname=>"SigmaCat"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=111", :city=>"Schaumburg", :teamnumber=>"111", :country=>"USA", :state=>"IL", :rookieyear=>"1996", :robotname=>"WildStang", :name=>"Motorola & Rolling Meadows High School & Wheeling High School", :website=>"http://www.wildstang.org/", :informalname=>"WildStang"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=114", :city=>"Los Altos", :teamnumber=>"114", :country=>"USA", :state=>"CA", :rookieyear=>"1997", :robotname=>"", :name=>"Applied Welding Technology/Intuitive Surgical/Best Buy/Los Altos Rotary & Los Altos High School", :website=>"http://lahsrobotics.org", :informalname=>"Eagle Strike"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=115", :city=>"Cupertino", :teamnumber=>"115", :country=>"USA", :state=>"CA", :rookieyear=>"1998", :robotname=>"El Toro", :name=>"BAE SYSTEMS/Symantec Corporation/Google & Monta Vista High School", :website=>"http://www.mvrt.com", :informalname=>"MVRT"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=116", :city=>"Herndon", :teamnumber=>"116", :country=>"USA", :state=>"VA", :rookieyear=>"1996", :robotname=>"ED v8.0", :name=>"NASA Headquarters / CSI & Herndon High School", :website=>"http://www.team116.org/", :informalname=>"Epsilon Delta"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=117", :city=>"Pittsburgh", :teamnumber=>"117", :country=>"USA", :state=>"PA", :rookieyear=>"1998", :robotname=>"", :name=>"Taylor Allderdice High School", :website=>"http://www.team117.org", :informalname=>"The Steel Dragons"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=118", :city=>"League City", :teamnumber=>"118", :country=>"USA", :state=>"TX", :rookieyear=>"1997", :robotname=>"Ballacuda", :name=>"NASA-JSC & Clear Creek ISD", :website=>"http://www.robonauts.org", :informalname=>"Robonauts"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=120", :city=>"Cleveland", :teamnumber=>"120", :country=>"USA", :state=>"OH", :rookieyear=>"1995", :robotname=>"", :name=>"NASA Glenn Research Center/Alcoa Foundation/Rockwell Automation/GrafTech Corporation/SMART Consortium/Jennings Foundation/Greater Cleveland Partnership/Kiwanis Club of Cleveland/Cuyahoga Community College & East Technical High School", :website=>"", :informalname=>"Scarabian Knights"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=121", :city=>"Newport County", :teamnumber=>"121", :country=>"USA", :state=>"RI", :rookieyear=>"1996", :robotname=>"Rhode Warrior", :name=>"Nordson Corporation/EFD Inc./Raytheon/Naval Undersea Warfare Center Newport/BAE SYSTEMS & Middletown High School & Portsmouth High School & Tiverton High School", :website=>"http://www.rhodewarrior.org/", :informalname=>"Rhode Warriors"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=122", :city=>"Hampton", :teamnumber=>"122", :country=>"USA", :state=>"VA", :rookieyear=>"1997", :robotname=>"Sir Anselots"Excalibur"", :name=>"NASA Langley Research Center / BAE Systems Norfolk Ship Repair / CACI Corporate Business Development / Canon Virginia Inc. / Grainger Inc / Jefferson Labs / Old Point National Bank / Thomas Nelson Community College & New Horizons Regional Education Center High School", :website=>"http://www.team122.org", :informalname=>"NASA Knights"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=123", :city=>"Hamtramck", :teamnumber=>"123", :country=>"USA", :state=>"MI", :rookieyear=>"1997", :robotname=>"CosmoBot", :name=>"General Motors / Ford Motor / RAUK Enterprises / Southfield Machining Inc. / Stich in Time / Coffey Machining Services / ITT Tech & Hamtramck High School", :website=>"http://www.teamfordfirst.org/team123", :informalname=>"Team - Cosmos"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=125", :city=>"Boston", :teamnumber=>"125", :country=>"USA", :state=>"MA", :rookieyear=>"1998", :robotname=>"Roger-Roger", :name=>"Northeastern University/Textron Systems & Brookline High School & Catholic Memorial High School & Boston Latin High School", :website=>"http://www.nutrons.neu.edu", :informalname=>"NU-TRONS"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=126", :city=>"Clinton", :teamnumber=>"126", :country=>"USA", :state=>"MA", :rookieyear=>"1992", :robotname=>"Gael Force", :name=>"Nypro Inc. & Clinton High School", :website=>"http://www.gaelforce126.com", :informalname=>"Gael Force"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=128", :city=>"Grandview Heights", :teamnumber=>"128", :country=>"USA", :state=>"OH", :rookieyear=>"1997", :robotname=>"Holey Cow!", :name=>"American Electric Power/Grandview Heights Marble Cliff Education Foundation & Grandview Heights High School", :website=>"http://www.GrandviewFIRST.com/", :informalname=>"The Botcats"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=131", :city=>"Manchester", :teamnumber=>"131", :country=>"USA", :state=>"NH", :rookieyear=>"1995", :robotname=>"CHAOS Returns", :name=>"Active Shock/BAE SYSTEMS/Rockwell Automation/University of New Hampshire & Central High School", :website=>"http://www.chaos131.com", :informalname=>"C.H.A.O.S."}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=133", :city=>"Standish", :teamnumber=>"133", :country=>"USA", :state=>"ME", :rookieyear=>"1997", :robotname=>"BERT"09"", :name=>"Eagle Industries Inc. & Bonny Eagle High School", :website=>"http://www.bert133.org", :informalname=>"B.E.R.T"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=134", :city=>"Pembroke", :teamnumber=>"134", :country=>"USA", :state=>"NH", :rookieyear=>"1997", :robotname=>"Lycurgus - the father of Sparta", :name=>"AG New England/BAE Systems/Metal Casting Technology/New Hampshire Technical Institute & Pembroke Academy", :website=>"http://www.sau53.org/net9/First", :informalname=>"Team Discovery"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=135", :city=>"Mishawaka", :teamnumber=>"135", :country=>"USA", :state=>"IN", :rookieyear=>"1998", :robotname=>"Black Knight", :name=>"Patrick Metals/AEP-American Electric Power/Indiana Department of Workforce Development/AM General/BOSCH/PHM Community & Penn Robotics", :website=>"http://robotics.phm.k12.in.us", :informalname=>"Penn Robotics"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=136", :city=>"Plainfield", :teamnumber=>"136", :country=>"USA", :state=>"NJ", :rookieyear=>"1997", :robotname=>"Matlida", :name=>"Middlesex County College/Port Authority of New York and New Jersey & Plainfield High", :website=>"http://www.freewebs.com/killerkardinals/", :informalname=>"Killer Kardinals"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=138", :city=>"Amherst", :teamnumber=>"138", :country=>"USA", :state=>"NH", :rookieyear=>"1996", :robotname=>"Hummer", :name=>"Monarch Instrument/BAE Systems/LCF Amps/Control Air & Souhegan High School", :website=>"http://robotics138.org", :informalname=>"Entropy"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=140", :city=>"Tyngsboro, MA", :teamnumber=>"140", :country=>"", :state=>"", :rookieyear=>"1997", :robotname=>"", :name=>"Brooks Automation/Raytheon", :website=>"http://www.surko.net/first", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=141", :city=>"Holland", :teamnumber=>"141", :country=>"USA", :state=>"MI", :rookieyear=>"1995", :robotname=>"WOBOT", :name=>"JR Automation Technologies, Inc. / Engineered Automation Systems, Inc. / Plascore / Holland Town Center / S. M. W. Tooling & West Ottawa High School", :website=>"http://team141.net", :informalname=>"WO-BOT"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=144", :city=>"Colerain Township, OH", :teamnumber=>"144", :country=>"", :state=>"", :rookieyear=>"1994", :robotname=>"", :name=>"Northwest High School", :website=>"http://dreamworks.2y.net/team144/index.php", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=145", :city=>"Norwich", :teamnumber=>"145", :country=>"USA", :state=>"NY", :rookieyear=>"1997", :robotname=>"", :name=>"Norwich Pharmaceuticals/Norwich Glass/The Balloon Detail & Norwich High School & Unadilla Valley High School & Sherburne-Earlville High School", :website=>"http://www.trx145.net", :informalname=>"T-Rx"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=147", :city=>"St. Petersburg, FL", :teamnumber=>"147", :country=>"", :state=>"", :rookieyear=>"1997", :robotname=>"", :name=>"Dixie Hollins High School", :website=>"http://www.deepthunder.com/", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=148", :city=>"Greenville", :teamnumber=>"148", :country=>"USA", :state=>"TX", :rookieyear=>"1992", :robotname=>"", :name=>"Innovation First, Inc./L-3 Communications Integrated Systems & Greenville High School", :website=>"http://www.robowranglers.com", :informalname=>"Robowranglers"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=151", :city=>"Nashua", :teamnumber=>"151", :country=>"USA", :state=>"NH", :rookieyear=>"1992", :robotname=>"E-wing", :name=>"BAE Systems & Nashua High School", :website=>"http://www.nashua151.org", :informalname=>"Tough Techs"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=155", :city=>"Berlin", :teamnumber=>"155", :country=>"USA", :state=>"CT", :rookieyear=>"1994", :robotname=>"Nutty XI", :name=>"Altuglas International Arkema Group & C.M. McGee Middle School & Berlin High School", :website=>"http://usfirst.berlinwall.org/", :informalname=>"The Technonuts"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=156", :city=>"Manchester", :teamnumber=>"156", :country=>"", :state=>"NHUSA", :rookieyear=>"0", :robotname=>"", :name=>"NH Veteran Test Team", :website=>"", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=157", :city=>"Marlborough", :teamnumber=>"157", :country=>"USA", :state=>"MA", :rookieyear=>"1995", :robotname=>"AZTECH", :name=>"EMC/Raytheon NCS/Raytheon IDS/US ARMY/Intel & Assabet Valley Regional Technical HS", :website=>"http://www.aztechs157.org/", :informalname=>"AZTECHS 157"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=158", :city=>"Milford", :teamnumber=>"158", :country=>"", :state=>" OH", :rookieyear=>"1996", :robotname=>"", :name=>"Solid Edge - UGS & Great Oaks", :website=>"http://cobras158.yi.org", :informalname=>"Milford"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=159", :city=>"Fort Collins", :teamnumber=>"159", :country=>"USA", :state=>"CO", :rookieyear=>"1998", :robotname=>"Mark IV", :name=>"AMD/Agilent Technologies, Inc./LSI Logic & Poudre High School", :website=>"http://www.alpinerobotics.com", :informalname=>"Alpine Robotics"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=165", :city=>"Annapolis", :teamnumber=>"165", :country=>"", :state=>" MD", :rookieyear=>"1998", :robotname=>"Das Goat", :name=>"US Naval Academy & Broadneck High School & Severn School High School", :website=>"", :informalname=>"Annapolis"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=166", :city=>"Merrimack", :teamnumber=>"166", :country=>"USA", :state=>"NH", :rookieyear=>"1995", :robotname=>"Atlas", :name=>"BAE Systems & Merrimack High School", :website=>"http://www.chopshop166.com", :informalname=>"Chop Shop"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=167", :city=>"Iowa City", :teamnumber=>"167", :country=>"USA", :state=>"IA", :rookieyear=>"1998", :robotname=>" Harvey", :name=>"Rockwell Collins / JCPenney & West High School & City High School", :website=>"http://www.icrobotics.com", :informalname=>"Children of the Corn"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=168", :city=>"North Miami Beach", :teamnumber=>"168", :country=>"USA", :state=>"FL", :rookieyear=>"1998", :robotname=>"(To be announced)", :name=>"North Miami Beach Senior High", :website=>"http://www.chargerrobotics.com/", :informalname=>"Mechanical Investigation Bureau"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=171", :city=>"Platteville", :teamnumber=>"171", :country=>"USA", :state=>"WI", :rookieyear=>"1995", :robotname=>"Quintus Decimus", :name=>"UW-Platteville & Area Schools", :website=>"http://www.uwplatt.edu/org/first171/", :informalname=>"Cheese Curd Herd"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=172", :city=>"Gorham/Falmouth", :teamnumber=>"172", :country=>"USA", :state=>"ME", :rookieyear=>"1996", :robotname=>"FalGor", :name=>"IDEXX Laboratories/Lanco Assembly Systems & Falmouth High School & Gorham High School", :website=>"http://www.NorthernForce.org", :informalname=>"Northern Force"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=173", :city=>"East Hartford", :teamnumber=>"173", :country=>"USA", :state=>"CT", :rookieyear=>"1995", :robotname=>"", :name=>"CNC Software/JP Fabrication & Repair/Nerac, Inc./United Technologies Research Center & Connecticut International Baccalaureate Academy & East Hartford High School & Rockville High School & Tolland High School", :website=>"http://www.rage173.org/", :informalname=>"R.A.G.E. (Robotics & Gadget Engineering)"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=174", :city=>"Liverpool", :teamnumber=>"174", :country=>"USA", :state=>"NY", :rookieyear=>"1998", :robotname=>"Snobot", :name=>"UTC Carrier & Liverpool High School", :website=>"http://www.snobot.org/", :informalname=>"Arctic Warriors"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=175", :city=>"Enfield", :teamnumber=>"175", :country=>"USA", :state=>"CT", :rookieyear=>"1996", :robotname=>"BUZZ", :name=>"UTC Hamilton Sundstrand Energy, Space & Defense & Enrico Fermi High School", :website=>"http://www.buzzrobotics.org", :informalname=>"Buzz Robotics"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=176", :city=>"Windsor Locks", :teamnumber=>"176", :country=>"USA", :state=>"CT", :rookieyear=>"1996", :robotname=>"Son of Maverick", :name=>"UTC Hamilton Sundstrand & Suffield High School & Windsor Locks High School", :website=>"http://www.aceshigh176.org", :informalname=>"Aces High"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=177", :city=>"South Windsor", :teamnumber=>"177", :country=>"USA", :state=>"CT", :rookieyear=>"1995", :robotname=>"The Bobcat", :name=>"UTC Power & South Windsor High School", :website=>"http://www.bobcatrobotics.org", :informalname=>"Bobcat Robotics"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=178", :city=>"Farmington", :teamnumber=>"178", :country=>"USA", :state=>"CT", :rookieyear=>"1997", :robotname=>"", :name=>"UTC Otis Elevator/ebm-papst Inc/UTC Sikorsky & Farmington High School", :website=>"http://www.farmingtonrobotics.org", :informalname=>"2nd Law Enforcers"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=179", :city=>"Riviera Beach", :teamnumber=>"179", :country=>"USA", :state=>"FL", :rookieyear=>"1998", :robotname=>"SWAMPTHING", :name=>"United Technologies/EDF/Pratt & Whitney & Inlet Grove High School & Suncoast High School", :website=>"http://www.179swampthing.org", :informalname=>"The Children of the Swamp"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=180", :city=>"Stuart", :teamnumber=>"180", :country=>"USA", :state=>"FL", :rookieyear=>"1998", :robotname=>"Running With Scissors", :name=>"Krieger Machine & Jensen Beach High School & Martin County High School & South Fork High School & Clark Advanced Learning Center (High School)", :website=>"http://www.spamrobotics.com", :informalname=>"S.P.A.M."}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=181", :city=>"Hartford", :teamnumber=>"181", :country=>"USA", :state=>"CT", :rookieyear=>"1998", :robotname=>"BOP", :name=>"Pratt & Whitney/United Technologies & Hartford Public Schools", :website=>"http://www.bop181.org", :informalname=>"Birds Of Prey"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=182", :city=>"Dearborn, MI", :teamnumber=>"182", :country=>"", :state=>"", :rookieyear=>"1998", :robotname=>"", :name=>"Dearborn Schools/Ford Motor Company & Edsel Ford High School & School & Edsel Ford High School", :website=>"", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=184", :city=>"Dearborn", :teamnumber=>"184", :country=>"", :state=>" MI", :rookieyear=>"1998", :robotname=>"FRED", :name=>"Ford Motor Company & Fordson High School", :website=>"http://www.geocities.com/fordson184", :informalname=>"F.R.E.D."}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=186", :city=>"Lake Buena Vista, FL", :teamnumber=>"186", :country=>"", :state=>"", :rookieyear=>"1998", :robotname=>"", :name=>"Walt Disney World Company & Gateway High School", :website=>"http://www.ghs.osceola.k12.fl.us/FIRST/186Home.htm", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=188", :city=>"Toronto", :teamnumber=>"188", :country=>"Canada", :state=>"ON", :rookieyear=>"1998", :robotname=>"Blizzard X", :name=>"Scotiabank/Bell Canada/Toronto District School Board & Woburn Collegiate Institute", :website=>"http://www.team188.com", :informalname=>"Blizzard"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=190", :city=>"Worcester", :teamnumber=>"190", :country=>"USA", :state=>"MA", :rookieyear=>"1992", :robotname=>"Cobra-Goat", :name=>"WPI & Massachusetts Academy of Math and Science", :website=>"http://www.wpi.edu/~first", :informalname=>"Gompei and the H.E.R.D."}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=191", :city=>"Rochester", :teamnumber=>"191", :country=>"USA", :state=>"NY", :rookieyear=>"1992", :robotname=>"", :name=>"Xerox Corporation & J. C. Wilson Commencement Academy", :website=>"http://www.x-cats.org", :informalname=>"X-CATS"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=192", :city=>"Palo Alto", :teamnumber=>"192", :country=>"USA", :state=>"CA", :rookieyear=>"1997", :robotname=>"G-Force", :name=>"The Linde Group/Sofinnova Ventures/SRI International/QUALCOMM Incorporated & Gunn High School", :website=>"http://grt.endofinternet.org", :informalname=>"GRT"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=195", :city=>"Southington", :teamnumber=>"195", :country=>"USA", :state=>"CT", :rookieyear=>"1998", :robotname=>"Knightmare", :name=>"Smiths Medical/Tiger Enterprises & Southington High School", :website=>"http://www.team195.com", :informalname=>"Cyber Knights"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=201", :city=>"Rochester Hills", :teamnumber=>"201", :country=>"USA", :state=>"MI", :rookieyear=>"1998", :robotname=>"", :name=>"General Motors Research and Development & Rochester High School", :website=>"http://feds201.net/", :informalname=>"The FEDS"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=203", :city=>"Sicklerville", :teamnumber=>"203", :country=>"USA", :state=>"NJ", :rookieyear=>"1998", :robotname=>"Rocky", :name=>"Campbell's Soup & Camden County Technical School", :website=>"http://www.rockyrobot.com", :informalname=>"One TUFF Team (Team United for FIRST)"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=204", :city=>"Voorhees", :teamnumber=>"204", :country=>"USA", :state=>"NJ", :rookieyear=>"1998", :robotname=>"", :name=>"Eastern Regional High School Board of Education /Eastern Educational Foundation & Eastern Camden County Regional High Schools", :website=>"http://www.team204.tk/", :informalname=>"Eastern Robotic Vikings"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=207", :city=>"Hawthorne", :teamnumber=>"207", :country=>"USA", :state=>"CA", :rookieyear=>"1999", :robotname=>"DuraBot", :name=>"Boeing/Walt Disney Imagineering & Centinela Valley Union High School District", :website=>"http://www.team207.org", :informalname=>"METALCRAFTERS"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=209", :city=>"North Dighton, MA", :teamnumber=>"209", :country=>"", :state=>"", :rookieyear=>"1999", :robotname=>"", :name=>"Texas Instruments & Dighton Rehoboth Regional High School", :website=>"", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=211", :city=>"Rochester", :teamnumber=>"211", :country=>"USA", :state=>"NY", :rookieyear=>"1999", :robotname=>"", :name=>"Eastman Kodak Company & John Marshall High School", :website=>"http://www.rcsdk12.org/marshall/index.html", :informalname=>"MAK"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=212", :city=>"Miami, FL", :teamnumber=>"212", :country=>"", :state=>"", :rookieyear=>"1999", :robotname=>"", :name=>"Dr. Michael Krop High School", :website=>"http://www.firstrobotics.net/212", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=213", :city=>"Keene", :teamnumber=>"213", :country=>"USA", :state=>"NH", :rookieyear=>"1999", :robotname=>"Dirty Bird Loader", :name=>"Keene High First Robotics Club", :website=>"http://www.khsfirst.com/", :informalname=>"The Dirty Birds"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=216", :city=>"Grandville", :teamnumber=>"216", :country=>"USA", :state=>"MI", :rookieyear=>"1999", :robotname=>"", :name=>"Custom Electronics & Grandville High School", :website=>"", :informalname=>"The RoboDawgs - OTL (Off the Leash)"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=217", :city=>"Sterling Heights", :teamnumber=>"217", :country=>"USA", :state=>"MI", :rookieyear=>"1999", :robotname=>"Roxy", :name=>"Ford Motor Company/FANUC Robotics America/BAE SYSTEMS/Kuka Assembly & Test & Utica Community Schools", :website=>"http://www.thunderchickens.org", :informalname=>"ThunderChickens"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=219", :city=>"Washington", :teamnumber=>"219", :country=>"USA", :state=>"NJ", :rookieyear=>"1999", :robotname=>"", :name=>"Warren Hills Regional High School", :website=>"", :informalname=>"Team Impact"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=222", :city=>"Tunkhannock", :teamnumber=>"222", :country=>"USA", :state=>"PA", :rookieyear=>"1999", :robotname=>"The Claw", :name=>"Guyette Communication/Procter and Gamble & Tunkhannock Area High School", :website=>"", :informalname=>"Tigertrons"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=223", :city=>"Wanaque", :teamnumber=>"223", :country=>"USA", :state=>"NJ", :rookieyear=>"1999", :robotname=>"", :name=>"Johnson & Johnson/State Electric & LakeLand Regional High School & Piscataway Vo-Tech", :website=>"http://team223.com", :informalname=>"Xtreme Heat"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=224", :city=>"Piscataway", :teamnumber=>"224", :country=>"USA", :state=>"NJ", :rookieyear=>"1999", :robotname=>"The Chief", :name=>"MCL Machine - Tools & Piscataway", :website=>"http://www.team224-thetribe.com", :informalname=>"The Tribe"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=225", :city=>"York", :teamnumber=>"225", :country=>"USA", :state=>"PA", :rookieyear=>"1999", :robotname=>"O'Really", :name=>"BAE SYSTEMS/Komax Group/Harley-Davidson of York & William F Goodling Regional Advanced Skills Center", :website=>"http://www.team225.org", :informalname=>"Team AwesomeO"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=226", :city=>"Troy", :teamnumber=>"226", :country=>"USA", :state=>"MI", :rookieyear=>"1999", :robotname=>"Hammerhead 11", :name=>"GM CCRW/Delphi & Troy School District High Schools", :website=>"http://www.hammerhead226.org", :informalname=>"Hammerheads"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=228", :city=>"Meriden", :teamnumber=>"228", :country=>"USA", :state=>"CT", :rookieyear=>"1999", :robotname=>"Gus 11", :name=>"Bristol-Myers Squibb/Big Country Hickory Pit BBQ/R&D Precision/Meriden Board Of Education & Maloney High School & Platt High School & Wilcox Technical High School & Lyman Hall High School", :website=>"http://www.team228.org", :informalname=>"Team _quot;Gus_quot;"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=229", :city=>"Potsdam", :teamnumber=>"229", :country=>"USA", :state=>"NY", :rookieyear=>"1999", :robotname=>"Afterthought", :name=>"Clarkson University & Massena High School & Salmon River High School", :website=>"http://team229.org", :informalname=>"Division By Zero"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=230", :city=>"Shelton", :teamnumber=>"230", :country=>"USA", :state=>"CT", :rookieyear=>"1999", :robotname=>"", :name=>"UTC Sikorsky/Pitney Bowes/OEM Controls/Unilever & Shelton High School", :website=>"http://www.shsrobotics.org", :informalname=>"Gaelhawks"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=231", :city=>"Pasadena", :teamnumber=>"231", :country=>"USA", :state=>"TX", :rookieyear=>"1998", :robotname=>"Roboticus", :name=>"Boeing/Oceaneering Space Systems/United Space Alliance & Pasadena ISD", :website=>"http://www.team231.com", :informalname=>"High Voltage"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=233", :city=>"Rockledge/Cocoa Beach/Viera", :teamnumber=>"233", :country=>"USA", :state=>"FL", :rookieyear=>"1999", :robotname=>"Roccobot", :name=>"NASA @Kennedy Space Center/PTC Instruments/Bradley Investments, LLC/Florida Air National Guard 114th Squadron/GovConnection, Inc & Rockledge High School & Cocoa Beach High School & Viera High School & School Board of Brevard County", :website=>"http://www.thepinkteam.org", :informalname=>"The Pink Team"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=234", :city=>"Indianapolis", :teamnumber=>"234", :country=>"USA", :state=>"IN", :rookieyear=>"1999", :robotname=>"R-2", :name=>"Allison Transmission / Rolls-Royce / Morris Machine / Indiana Department of Workforce Development / Our Proud Grandmas & Perry Meridian High School", :website=>"http://www.cyberblue234.com", :informalname=>"Cyber Blue"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=235", :city=>"Warren, MI", :teamnumber=>"235", :country=>"", :state=>"", :rookieyear=>"1999", :robotname=>"", :name=>"", :website=>"http://team235.netfirms.com", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=236", :city=>"Old Lyme", :teamnumber=>"236", :country=>"USA", :state=>"CT", :rookieyear=>"1999", :robotname=>"Tick", :name=>"Dominion Millstone Power Station & Lyme-Old Lyme High School", :website=>"http://www.team236.org", :informalname=>"Techno-Ticks"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=237", :city=>"Watertown", :teamnumber=>"237", :country=>"USA", :state=>"CT", :rookieyear=>"1999", :robotname=>"Pal V2009", :name=>"Siemon Company/TUV Rheinland/Trumpf & Watertown High School", :website=>"http://www.team237.com", :informalname=>"T.R.I.B.E."}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=238", :city=>"Manchester", :teamnumber=>"238", :country=>"USA", :state=>"NH", :rookieyear=>"1999", :robotname=>"BAE-TI", :name=>"Texas Instruments/Quirk Chevrolet/BAE Systems/Gigunda Group & Manchester Memorial High School", :website=>"http://238.pinepointpark.com/", :informalname=>"Cruisin Crusaders"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=240", :city=>"Monroe", :teamnumber=>"240", :country=>"USA", :state=>"MI", :rookieyear=>"1999", :robotname=>"", :name=>"DTE ENERGY/Jefferson Adult Boosters/ITT Tech/Ford Motor Co/Education Plus Credit Union/UWUA Local 223/UAW Local 14/Mr Leski/Monroe Aluminum & Jefferson High School Robotics", :website=>"http://scnc.jefferson.k12.mi.us/jhs/web240/index.html", :informalname=>"Tempest"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=241", :city=>"Derry", :teamnumber=>"241", :country=>"USA", :state=>"NH", :rookieyear=>"1999", :robotname=>"Astro", :name=>"Tire Warehouse / BAE Systems & Pinkerton Academy", :website=>"http://www.team241.org", :informalname=>"Astros"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=243", :city=>"", :teamnumber=>"243", :country=>"", :state=>"", :rookieyear=>"1999", :robotname=>"", :name=>"", :website=>"", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=245", :city=>"Rochester Hills", :teamnumber=>"245", :country=>"USA", :state=>"MI", :rookieyear=>"1999", :robotname=>"Olympia", :name=>"GM Finance Staff & Rochester Adams High School", :website=>"http://www.adambots.com/", :informalname=>"Adambots"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=246", :city=>"Boston", :teamnumber=>"246", :country=>"USA", :state=>"MA", :rookieyear=>"1999", :robotname=>"RoboRhett", :name=>"Boston University & Boston University Academy", :website=>"http://www.burobotics.org", :informalname=>"Overclocked"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=247", :city=>"Berkley", :teamnumber=>"247", :country=>"USA", :state=>"MI", :rookieyear=>"1999", :robotname=>"", :name=>"Ford Motor Company / Comau, Inc. / Azure Dynamics / Terminal Supply / Production Tool Supply / Durst Lumber / Ringside Creative & Berkley High School", :website=>"http://www.dabears247.com", :informalname=>"Da Bears"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=248", :city=>",", :teamnumber=>"248", :country=>"", :state=>"", :rookieyear=>"1999", :robotname=>"", :name=>"", :website=>"", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=249", :city=>"Detroit, MI", :teamnumber=>"249", :country=>"", :state=>"", :rookieyear=>"1999", :robotname=>"", :name=>"Breithaupt Career and Technical Center", :website=>"", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=250", :city=>"Colonie", :teamnumber=>"250", :country=>"USA", :state=>"NY", :rookieyear=>"1999", :robotname=>"", :name=>"GE Volunteers / Mobile Air Transport / RPI / Metal Supermarkets / Vicarious Visions & Colonie Central High School", :website=>"http://www.team250.org?ref=usfirst", :informalname=>"Dynamos"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=253", :city=>"Millbrae", :teamnumber=>"253", :country=>"USA", :state=>"CA", :rookieyear=>"1999", :robotname=>"", :name=>"BAE Systems & Mills High School", :website=>"http://www.mhsrobotics.com", :informalname=>"Mills Robotics Team"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=254", :city=>"San Jose", :teamnumber=>"254", :country=>"USA", :state=>"CA", :rookieyear=>"1999", :robotname=>"Devastator", :name=>"NASA Ames Research Center/Mike Dininny & Bellarmine College Preparatory", :website=>"http://www.team254.com", :informalname=>"Cheesy Poofs"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=255", :city=>",", :teamnumber=>"255", :country=>"", :state=>"", :rookieyear=>"1999", :robotname=>"", :name=>"East Side Union High School District", :website=>"", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=256", :city=>"San Jose", :teamnumber=>"256", :country=>"USA", :state=>"CA", :rookieyear=>"1999", :robotname=>"Rambo IX", :name=>"BAE SYSTEMS/Lockheed Martin/Xyratex/ALTA Design and Manufacturing Inc/Peak Plastics/Hijinx Comics/B3 Advanced Communication Systems/Willow Glen Foundation & Willow Glen High School", :website=>"http://www.wgteam256.org", :informalname=>"Rams"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=258", :city=>"San Jose, CA", :teamnumber=>"258", :country=>"", :state=>"", :rookieyear=>"1999", :robotname=>"", :name=>"Applied Materials/Evans Precision Machining, Inc. & Lincoln High School", :website=>"http://www.seadawgs.com", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=259", :city=>"Bell", :teamnumber=>"259", :country=>"", :state=>" CA", :rookieyear=>"1999", :robotname=>"", :name=>"", :website=>"http://www.bell.k12.ca.us/BellHS/default.html", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=263", :city=>"Lake Ronkonkoma", :teamnumber=>"263", :country=>"USA", :state=>"NY", :rookieyear=>"1999", :robotname=>"Ixion", :name=>"RETLIF TESTING LABORATORIES/BAE Systems/CHECK-MATE INDUSTRIES, INC./NORTHROCK INDUSTRIES,INC/Sachem Robotics Team 263 Booster Club & Sachem Central School District", :website=>"http://www.sachemaftershock.com", :informalname=>"Sachem Aftershock"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=266", :city=>"Milford, NH", :teamnumber=>"266", :country=>"", :state=>"", :rookieyear=>"1999", :robotname=>"", :name=>"school partner", :website=>"", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=267", :city=>"Parkland, FL", :teamnumber=>"267", :country=>"", :state=>"", :rookieyear=>"1999", :robotname=>"", :name=>"Hydraulic & Pneumatic Engineering Company, Inc./Motorola Inc. & Coral Springs Christian Academy & North Broward Preparatory School", :website=>"http://www.team267.org/", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=269", :city=>"Oconomowoc", :teamnumber=>"269", :country=>"USA", :state=>"WI", :rookieyear=>"1999", :robotname=>"Desliza", :name=>"GE Volunteers/ITT/Marquette University/Motus/MSOE & Oconomowoc High School", :website=>"http://www.cooneyrobotics.com/", :informalname=>"CooneyTech"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=270", :city=>"Deer Park", :teamnumber=>"270", :country=>"USA", :state=>"NY", :rookieyear=>"1999", :robotname=>"", :name=>"Deer Park High School & Deer Park School District", :website=>"http://deerparkschols.org/Department/Technology", :informalname=>"Falcons"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=271", :city=>"Bay Shore", :teamnumber=>"271", :country=>"USA", :state=>"NY", :rookieyear=>"1999", :robotname=>"", :name=>"AUDIBLE.COM/BAE Systems/Verizon/Bad Boys From Bay Shore Ltd. & Bay Shore High School", :website=>"http://www2.bayshoreschools.org/robotics/", :informalname=>"Mechanical Marauders"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=272", :city=>"Lansdale", :teamnumber=>"272", :country=>"USA", :state=>"PA", :rookieyear=>"1998", :robotname=>"Horsepower", :name=>"Comcast / AimPoint Technologies / Delaware Valley Industrial Resource Center / ASI Technologies & Lansdale Catholic High School", :website=>"http://www.frc272.com", :informalname=>"Cyber-Crusaders"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=274", :city=>"Cleveland", :teamnumber=>"274", :country=>"", :state=>" OH", :rookieyear=>"1999", :robotname=>"", :name=>"", :website=>"http://[email protected]", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=276", :city=>"Youngstown", :teamnumber=>"276", :country=>"USA", :state=>"OH", :rookieyear=>"1999", :robotname=>"mad cow", :name=>"Brainard Rivet Company/Martha Holden Jennings Foundation/NASA Glenn Research Center External Programs/Parker Hannifin Corporation/Youngstown State University/JCPenney & YCS-Chaney-Choffin-East-YEC Robotics Team & Youngstown City Schools", :website=>"", :informalname=>"Mad Cow Engineers"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=279", :city=>"Maumee", :teamnumber=>"279", :country=>"USA", :state=>"OH", :rookieyear=>"1999", :robotname=>"", :name=>"Dana Holding Corporation & Toledo Technology Academy High School & Rogers High School", :website=>"http://www.techfusion-279.com", :informalname=>"Tech Fusion"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=280", :city=>"Taylor", :teamnumber=>"280", :country=>"USA", :state=>"MI", :rookieyear=>"1999", :robotname=>""Predator"", :name=>"Ford Motor Company/ITT Technical Institute/Wade Trim & Associates & Taylor Career Center & Kennedy H.S. & Truman H.S. & Gabriel Richard H.S.", :website=>"http://www.tnt280.com", :informalname=>"TNT"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=281", :city=>"Greenville", :teamnumber=>"281", :country=>"USA", :state=>"SC", :rookieyear=>"1999", :robotname=>"E.T.4", :name=>"Michelin / Greenville Technical College & Greenville Technical Charter High School & Greenville County Schools", :website=>"http://www.entech281.com", :informalname=>"Team E.T."}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=284", :city=>"Dimock", :teamnumber=>"284", :country=>"USA", :state=>"PA", :rookieyear=>"1999", :robotname=>"", :name=>"Elk Lake HS & SCCTC", :website=>"http://www.lths.k12.pa.us/robotics/robothome.html", :informalname=>"The Crew"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=287", :city=>"Mastic Beach", :teamnumber=>"287", :country=>"USA", :state=>"NY", :rookieyear=>"1999", :robotname=>"", :name=>"Brookhaven National Lab & William Floyd HS", :website=>"http://www.wfsd.k12.ny.us/robotics.asp", :informalname=>"Floyd"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=288", :city=>"Grandville", :teamnumber=>"288", :country=>"USA", :state=>"MI", :rookieyear=>"1999", :robotname=>"", :name=>"Custom Electronics & Grandville High School", :website=>"http://www.robodawgs.com", :informalname=>"The RoboDawgs"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=291", :city=>"Erie", :teamnumber=>"291", :country=>"USA", :state=>"PA", :rookieyear=>"1999", :robotname=>"L.E.XI", :name=>"GE Volunteers & Erie School District", :website=>"http://www.team291.org", :informalname=>"CIA - Creativity In Action"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=292", :city=>"Russiaville", :teamnumber=>"292", :country=>"USA", :state=>"IN", :rookieyear=>"1999", :robotname=>"Sgt. Joe", :name=>"The Chrysler Foundation/The Delphi Foundation/Indiana Department of Workforce Development/AndyMark, Inc. & Western High School", :website=>"http://panthertech.western.k12.in.us/index.htm", :informalname=>"PantherTech"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=293", :city=>"Pennington", :teamnumber=>"293", :country=>"USA", :state=>"NJ", :rookieyear=>"1999", :robotname=>"SPIKE", :name=>"Bristol-Myers Squibb/MEI & Hopewell Valley Central High School", :website=>"http://293spike.webs.com/", :informalname=>"Team S.P.I.K.E."}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=294", :city=>"Redondo Beach", :teamnumber=>"294", :country=>"USA", :state=>"CA", :rookieyear=>"1999", :robotname=>"Orange Force", :name=>"Boeing/Northrop Grumman & Redondo Union & Mira Costa High School", :website=>"http://www.bcrobotics.org", :informalname=>"Beach Cities Robotics"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=295", :city=>"Granite Bay", :teamnumber=>"295", :country=>"USA", :state=>"CA", :rookieyear=>"1999", :robotname=>"Run-Away-Runway", :name=>"Sierra College/Intel/Pasco Scientific/Harris & Bruno International & Granite Bay High School & South Placer Area High Schools", :website=>"http://spcrobotics.com", :informalname=>"Renevatio"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=296", :city=>"Montreal", :teamnumber=>"296", :country=>"Canada", :state=>"QC", :rookieyear=>"1999", :robotname=>"Northern Knight", :name=>"Arial Foundation/Ernst &Young/Dorel & Loyola High School", :website=>"http://robotics.loyola.ca", :informalname=>"Northern Knights"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=300", :city=>"Philadelphia", :teamnumber=>"300", :country=>"", :state=>" PA", :rookieyear=>"1999", :robotname=>"", :name=>"West Philadelphia High School - Academy for Automotive and Mechanical Engineering", :website=>"", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=301", :city=>"Dearborn", :teamnumber=>"301", :country=>"", :state=>" MI", :rookieyear=>"1999", :robotname=>"", :name=>"", :website=>"http://www.probots.org", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=302", :city=>"Lake Orion", :teamnumber=>"302", :country=>"USA", :state=>"MI", :rookieyear=>"1999", :robotname=>"", :name=>"The Chrysler Foundation & Lake Orion High School", :website=>"http://www.team302.com", :informalname=>"The Dragons"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=303", :city=>"Bridgewater", :teamnumber=>"303", :country=>"USA", :state=>"NJ", :rookieyear=>"1999", :robotname=>"", :name=>"Pressure Tube Manufacturing/Bell Labs/303 RAMP & Bridgewater Raritan Regional High School", :website=>"http://www.team303.com", :informalname=>"Panther Robotics"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=304", :city=>"Philadelphia", :teamnumber=>"304", :country=>"USA", :state=>"PA", :rookieyear=>"1999", :robotname=>"RoboGriff", :name=>"George Washington High School", :website=>"http://www.team304.com", :informalname=>"GWHS Robo Griffins"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=306", :city=>"Corry", :teamnumber=>"306", :country=>"USA", :state=>"PA", :rookieyear=>"1999", :robotname=>"", :name=>"Corry Industrial Roundtable/Al Xander Company, Inc/Bova's Hardware/Corry Contract Inc/Corry Lumber Co./Corry Manufacturing Company/Corry Rubber Corporation/D&E Machining Inc. /Foamex/Great Lakes Manufacturing, Inc./Johnson Books & Stuff/Rossbacher Insurance Service/State Farm Insurance/Tonnard Mfg. Corp./Viking Plastics Inc. & Corry Area High School", :website=>"http://myschoolonline.com/site/0,1876,39802-161094-44-31090,00.html", :informalname=>"CRT"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=308", :city=>"Farmington Hills", :teamnumber=>"308", :country=>"USA", :state=>"MI", :rookieyear=>"1999", :robotname=>"Audrey 9", :name=>"Tecla Company, Inc./TRW & Walled Lake Schools", :website=>"http://www.308monsters.com", :informalname=>"The Monsters"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=311", :city=>"Islip Terrace, NY", :teamnumber=>"311", :country=>"", :state=>"", :rookieyear=>"1999", :robotname=>"", :name=>"East Islip High School", :website=>"http://www.eischools.org/usfirst/index.html", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=312", :city=>"St. Petersburg", :teamnumber=>"312", :country=>"", :state=>" FL", :rookieyear=>"1999", :robotname=>"", :name=>"Baxter Healthcare of Tampa Bay & Lakewood High School", :website=>"http://heatwave.cat.pinellas.k12.fl.us", :informalname=>"HeatWave"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=313", :city=>"Wayne", :teamnumber=>"313", :country=>"USA", :state=>"MI", :rookieyear=>"1999", :robotname=>"Sarbez 8", :name=>"Ford Motor Company/ITT Technical Institute & Wayne-Westland Schools", :website=>"", :informalname=>"The Bionic Union"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=314", :city=>"Flint", :teamnumber=>"314", :country=>"USA", :state=>"MI", :rookieyear=>"1999", :robotname=>"Big MO", :name=>"A Frame Awards, Inc./Carman-Ainsworth Education Foundation/Delphi/GM Manufacturing/Mid-Michigan Robotics Alliance/New Technologies, Inc./PENTECH/Rowe Engineering/UAW & Carman-Ainsworth High School International Academy of Flint", :website=>"http://www.314megatronoracles.com/", :informalname=>"The Megatron Oracles"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=316", :city=>"Carneys Point", :teamnumber=>"316", :country=>"USA", :state=>"NJ", :rookieyear=>"1999", :robotname=>"SAM", :name=>"BE&K/DuPont Center for Collaborative Research & Education/Dupont Chambers Works/PSEG/Salem County Community College/South Jersey Robotics, Inc & Salem County High Schools", :website=>"http://www.lunatecs316.org", :informalname=>"LuNaTeCs"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=319", :city=>"Alton", :teamnumber=>"319", :country=>"USA", :state=>"NH", :rookieyear=>"1999", :robotname=>"Big Bad Bob", :name=>"Prospect Mountain High School", :website=>"http://www.bobotics319.com", :informalname=>"Big Bad Bob"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=321", :city=>"Philadelphia", :teamnumber=>"321", :country=>"USA", :state=>"PA", :rookieyear=>"1999", :robotname=>"Lancer", :name=>"Boeing / Drexel University & SDP-Central High School", :website=>"", :informalname=>"RoboLancers"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=322", :city=>"Flint", :teamnumber=>"322", :country=>"USA", :state=>"MI", :rookieyear=>"1999", :robotname=>"Fire Hazard", :name=>"General Motors Powertrain/ITT Technhical Institute & Flint Community Schools", :website=>"http://www.fireteam.org", :informalname=>"Team F.I.R.E."}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=326", :city=>"Romulus", :teamnumber=>"326", :country=>"USA", :state=>"MI", :rookieyear=>"1999", :robotname=>"", :name=>"DLLINK/General Motors & Romulus Community Schools", :website=>"http://www.RomulusRobotics.net", :informalname=>"Xtreme Eagles"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=329", :city=>"Medford", :teamnumber=>"329", :country=>"USA", :state=>"NY", :rookieyear=>"1999", :robotname=>"Voj-a-nator", :name=>"Motorola & Patchogue-Medford High School", :website=>"http://team329.com/", :informalname=>"Raiders"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=330", :city=>"Hermosa Beach", :teamnumber=>"330", :country=>"USA", :state=>"CA", :rookieyear=>"1999", :robotname=>"Beach Bot", :name=>"NASA-JPL / J&F Machine / Raytheon & Hope Chapel Academy High School", :website=>"http://www.team330.org", :informalname=>"Beach Bots"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=331", :city=>"New York", :teamnumber=>"331", :country=>"", :state=>" NY", :rookieyear=>"1999", :robotname=>"", :name=>"Consolidated Edison & Washington Irving HS", :website=>"http://www.team331.com", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=333", :city=>"Brooklyn", :teamnumber=>"333", :country=>"USA", :state=>"NY", :rookieyear=>"1999", :robotname=>"", :name=>"John Dewey H S", :website=>"", :informalname=>"MEGALODONS"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=334", :city=>"Brooklyn", :teamnumber=>"334", :country=>"USA", :state=>"NY", :rookieyear=>"1999", :robotname=>"Charlie", :name=>"Brooklyn Tech.Alumni Foundation, Inc./Con Edison & Brooklyn Tech. H.S.", :website=>"http://techknights334.org/index.php", :informalname=>"TechKnights"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=335", :city=>"Brooklyn", :teamnumber=>"335", :country=>"USA", :state=>"NY", :rookieyear=>"1999", :robotname=>"", :name=>"Con Edison/VER Tech Elevator/MTA-NYC Transit Authority/Polytech/City Tech & Science Skills Center HS", :website=>"http://www.skillztech335.webs.com/", :informalname=>"Skillz Tech Gear Botz"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=337", :city=>"Logan", :teamnumber=>"337", :country=>"USA", :state=>"WV", :rookieyear=>"2000", :robotname=>"STAR-bot", :name=>"American Electric Power/Mine LIFELINE LLC/National Armiture/Logan County Commission/WV Department of Adult-Technical Programs/Ralph R Willis Career & Technical Center & Logan County Schools", :website=>"http://www.firstteam337.org", :informalname=>"Hard Working Hard Hats"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=339", :city=>"Stafford, Spotsylvania & King George", :teamnumber=>"339", :country=>"USA", :state=>"VA", :rookieyear=>"2000", :robotname=>"Kilroy", :name=>"Battelle Memorial Institute/Stafford County Economic Development Authority/HDT Engineering Services/BAE Systems & Commonwealth Governor's School", :website=>"http://robotics.cgs.k12.va.us/index.htm", :informalname=>"Kilroy"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=340", :city=>"Churchville", :teamnumber=>"340", :country=>"USA", :state=>"NY", :rookieyear=>"2000", :robotname=>"", :name=>"Bausch & Lomb Incorporated & Churchville-Chili High School", :website=>"http://www.team340.org", :informalname=>"G.R.R. (Greater Rochester Robotics)"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=341", :city=>"Ambler", :teamnumber=>"341", :country=>"USA", :state=>"PA", :rookieyear=>"2000", :robotname=>"Miss Daisy", :name=>"DOW Chemical / Pennsylvania Space Consortium / Cobham Defense Electronics / Johnson & Johnson PRD / PJM Interconnection / DeVry University / BAE Systems & Wissahickon High School", :website=>"http://www.team341.com/", :informalname=>"Miss Daisy"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=342", :city=>"North Charleston", :teamnumber=>"342", :country=>"USA", :state=>"SC", :rookieyear=>"2000", :robotname=>"Burn-E", :name=>"Robert Bosch, LLC/BAE SYSTEMS/Booz Allen Hamilton/Dorchester County Council/Bosch Rexroth/Trident Technical College & Summerville High School & Fort Dorchester High School & Woodland High School & Northside Christian School High School", :website=>"http://www.team342.org", :informalname=>"Burning Magnetos"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=343", :city=>"Seneca", :teamnumber=>"343", :country=>"USA", :state=>"SC", :rookieyear=>"2000", :robotname=>"Skwid", :name=>"School District of Oconee County/Duke Energy/Itron, Inc./Schneider Electric Company & F.P Hamilton Career Center & Seneca High School & Walhalla High School & West-Oak High School & Tamassee-Salem High School", :website=>"http://www.metalinmotion.com/", :informalname=>"Metal-In-Motion"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=345", :city=>"Norfolk", :teamnumber=>"345", :country=>"", :state=>" VA", :rookieyear=>"2000", :robotname=>"Animosh", :name=>"Ford & NORSTAR", :website=>"", :informalname=>"Norfolk"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=346", :city=>"Chesterfield", :teamnumber=>"346", :country=>"USA", :state=>"VA", :rookieyear=>"2000", :robotname=>"", :name=>"Alstom Power/Dupont/Computer Resource Team, Inc/Peer Consortium at JTCC/ITT Technical Institute & Lloyd C. Bird High School and Virginia Governor's Academy for Engineering Studies at Lloyd C. Bird High School", :website=>"", :informalname=>"RoboHawks"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=348", :city=>"Norwell", :teamnumber=>"348", :country=>"USA", :state=>"MA", :rookieyear=>"2000", :robotname=>"killer kowalski", :name=>"Mass Bay Engineering/ViaSat & Norwell High School", :website=>"http://www.norwellrobotics.com", :informalname=>"Norwell Robotics"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=350", :city=>"Plaistow", :teamnumber=>"350", :country=>"", :state=>" NH", :rookieyear=>"2000", :robotname=>"Technotus", :name=>"Analog Devices/Ward Fabrication/Raytheon & Timberlane Regional High School", :website=>"", :informalname=>"Timberlane Robotics"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=352", :city=>"Carle Place", :teamnumber=>"352", :country=>"USA", :state=>"NY", :rookieyear=>"2000", :robotname=>"", :name=>"Lockheed Martin & Carle Place High School", :website=>"http://www.cps.k12.ny.us/", :informalname=>"The Green Machine"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=353", :city=>"Plainview", :teamnumber=>"353", :country=>"USA", :state=>"NY", :rookieyear=>"2000", :robotname=>"Robohawk", :name=>"Trio Hardware/Ausco Inc./MITEQ & Plainview-Old Bethpage JFK High School", :website=>"http://www.pobots.com", :informalname=>"POBots"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=354", :city=>"Brooklyn", :teamnumber=>"354", :country=>"USA", :state=>"NY", :rookieyear=>"2000", :robotname=>"FIRST Mate", :name=>"Bloomberg / HSBC Bank USA / New York City College of Technology & George Westinghouse High School", :website=>"http://www.GHouseRobotics.com", :informalname=>"G-House Pirates"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=356", :city=>"Little Rock", :teamnumber=>"356", :country=>"", :state=>" AR", :rookieyear=>"2000", :robotname=>"", :name=>"", :website=>"http://theduchy.ualr.edu/first/AmandaIndex.html", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=357", :city=>"Drexel Hill", :teamnumber=>"357", :country=>"USA", :state=>"PA", :rookieyear=>"2000", :robotname=>"Jester", :name=>"Boeing Co./Sapsis Rigging Inc. & Upper Darby High School", :website=>"http://www.team357.org", :informalname=>"Royal Assault"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=358", :city=>"Hauppauge", :teamnumber=>"358", :country=>"USA", :state=>"NY", :rookieyear=>"2000", :robotname=>"", :name=>"BAE Systems/East-West Industries/Festo & Hauppauge High School", :website=>"http://team358.org", :informalname=>"Robotic Eagles"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=359", :city=>"Waialua", :teamnumber=>"359", :country=>"USA", :state=>"HI", :rookieyear=>"2000", :robotname=>"Poi Pounder IX", :name=>"Castle & Cooke, Inc. Dole Plantation / McInerny Foundation / University of Hawaii Physics-Melvin Matsunaga / R.M. Towill Corp. / NAVSEA Detachment Pacific / Hawaii Space Grant Consortium / Randy Wood / Waialua High School Foundation / Ted's Bakery / University of Hawaii-College of Engineering / Hawaii Visitors and Convention Bureau / AFCEA Hawaii / BAE Systems / North Shore Hanapa'a Club / Waialua Federal Credit Union / Waialua Lions Club / Hawaiian Dredging / ASCE Hawaii / ACTUS Lend Lease / Iron Horse Development / Dole Food Company of Hawaii / Aloha Gourmet Products / Matsuo Takabuki / Desert Watch Security, Inc. / Alice Gross / GT Pies / Gordon Kuwada / Islander Group / Charles Nakoa III / KTM Services Inc. / Maui Divers of Hawaii / Pioneer Hi-Bred International / H&W Foods / Loco Trendz / Gone Tropo, LLC / Mid Pacific Imports / Kai Media & Marketing / Pacific Geotechnical Engineers, Inc. & Waialua Complex 21st CCLC Grant & Waialua High School & HI DOE", :website=>"http://www.waialuarobotics.com", :informalname=>"Hawaiian Kids"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=360", :city=>"Tacoma", :teamnumber=>"360", :country=>"USA", :state=>"WA", :rookieyear=>"2000", :robotname=>"Rainmaker 9", :name=>"Boeing/Trillium Dental/Enterprise International/Parents of Bellarmine Robotics & Bellarmine Prep", :website=>"http://www.bpsep.com", :informalname=>"The Revolution"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=362", :city=>"Los Angeles", :teamnumber=>"362", :country=>"USA", :state=>"CA", :rookieyear=>"2000", :robotname=>"", :name=>"Northrop Grumman/Raytheon & The Archer School for Girls", :website=>"", :informalname=>"The Muses"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=364", :city=>"Gulfport", :teamnumber=>"364", :country=>"USA", :state=>"MS", :rookieyear=>"2000", :robotname=>"", :name=>"NASA/DuPont Delisle/Knesal Engineering Services, INC. & Gulfport High School Technology Center", :website=>"http://www.teamfusion364.org", :informalname=>"Team Fusion"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=365", :city=>"Wilmington", :teamnumber=>"365", :country=>"USA", :state=>"DE", :rookieyear=>"2000", :robotname=>"MOE", :name=>"Boeing/DuPont Engineering/DuPont CCRE/First State Robotics & MOE Robotics Group", :website=>"http://www.moe365.org", :informalname=>"Miracle Workerz"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=368", :city=>"Honolulu", :teamnumber=>"368", :country=>"USA", :state=>"HI", :rookieyear=>"2000", :robotname=>"IngBot", :name=>"Hawaiian Electric Company/University of Hawaii College of Engineering/BAE SYSTEMS & McKinley High School", :website=>"http://www.mckinleyrobotics.org/", :informalname=>"Team Kika Mana"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=369", :city=>"Brooklyn", :teamnumber=>"369", :country=>"USA", :state=>"NY", :rookieyear=>"2000", :robotname=>"", :name=>"Credit Suisse & Ackman Family Foundation & William E. Grady Tech. High School", :website=>"http://www.team369.com", :informalname=>"High Voltage"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=371", :city=>"Staten Island", :teamnumber=>"371", :country=>"USA", :state=>"NY", :rookieyear=>"2000", :robotname=>"Khan!!!!!", :name=>"Port Authority of New York and New Jersey/Bloomberg/Con Edison & Curtis High School", :website=>"http://ccwrobotics.ning.com", :informalname=>"Cyber Warriors"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=372", :city=>"Mukilteo", :teamnumber=>"372", :country=>"USA", :state=>"WA", :rookieyear=>"2000", :robotname=>"Artificial Insanity", :name=>"Boeing/ITT Technical Institute -1615 75th Street SW/Electroimpact & Kamiak High School", :website=>"", :informalname=>"RoboKnights"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=373", :city=>"Locust Valley, NY", :teamnumber=>"373", :country=>"", :state=>"", :rookieyear=>"2000", :robotname=>"", :name=>"", :website=>"", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=374", :city=>"Anchorage, AK", :teamnumber=>"374", :country=>"", :state=>"", :rookieyear=>"2000", :robotname=>"", :name=>"SAME/AeroTwin", :website=>"", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=375", :city=>"Staten Island", :teamnumber=>"375", :country=>"USA", :state=>"NY", :rookieyear=>"2000", :robotname=>"The Sliding Seagull", :name=>"Staten Island Foundation/Port Authority of New York and New Jersey/State Assemblyman Michael Cusick/State Senator Andrew Lanza/NYC Councilman James Oddo & Staten Island Technical High School", :website=>"", :informalname=>"Robotic Plague"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=376", :city=>"Newark, CA", :teamnumber=>"376", :country=>"", :state=>"", :rookieyear=>"2000", :robotname=>"", :name=>"InVision Technologies/Pete Weber Performance Products/Stanford University & Newark Memorial High School", :website=>"", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=378", :city=>"Newfane", :teamnumber=>"378", :country=>"USA", :state=>"NY", :rookieyear=>"2000", :robotname=>"", :name=>"Delphi Thermal/UAW 686 & Newfane High School", :website=>"http://www.delphicircuitstompers.com", :informalname=>"The Circuit Stompers"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=379", :city=>"Girard", :teamnumber=>"379", :country=>"USA", :state=>"OH", :rookieyear=>"2000", :robotname=>"STEM CAT", :name=>"Girard High School", :website=>"http://www.team379.co.cc", :informalname=>"RoboCats"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=380", :city=>"Bronx", :teamnumber=>"380", :country=>"USA", :state=>"NY", :rookieyear=>"2000", :robotname=>"Pat", :name=>"Consolidated Edison/Pershing Square. & Samuel Gompers High School", :website=>"http://gompershs.ourschools.org/", :informalname=>"G-FORCE"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=381", :city=>"Trenton", :teamnumber=>"381", :country=>"", :state=>" NJ", :rookieyear=>"2000", :robotname=>"", :name=>"Bristol Myers Squibb & Trenton Central High School", :website=>"http://www.trenton.k12.nj.us/tchs/robotics/", :informalname=>"Tornadoes"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=382", :city=>"Columbus", :teamnumber=>"382", :country=>"", :state=>" OH", :rookieyear=>"2000", :robotname=>"", :name=>"American Electric Power/Batelle/Columbus State Community College & Eastmoor Academy High School", :website=>"http://www.team382.com", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=383", :city=>"Porto Alegre", :teamnumber=>"383", :country=>"Brazil", :state=>"RS", :rookieyear=>"2000", :robotname=>"Brazilian Buddy X", :name=>"Altus/BAE Systems/Dorvo Maquinas/Metalaser & Provincia de Sao Pedro High School", :website=>"http://www.team383.com.br", :informalname=>"Brazilian Machine"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=384", :city=>"Richmond", :teamnumber=>"384", :country=>"USA", :state=>"VA", :rookieyear=>"2000", :robotname=>"Sparky 8", :name=>"GE Volunteers/ShowBest Fixture Corp./Sams Club/CAPER/ITT Technical Institute & Henrico Co. Education Foundation & Tucker High School", :website=>"http://www.sparky384.com", :informalname=>"Sparky 384"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=386", :city=>"Melbourne", :teamnumber=>"386", :country=>"USA", :state=>"FL", :rookieyear=>"2000", :robotname=>"Ty-Rap IX", :name=>"Harris Corp/Rockwell Collins/EDAK/ACE/Jackson and Tull/Compass Solutions & Melbourne HS & School Board of Brevard County", :website=>"http://www.voltage386.com", :informalname=>"Team Voltage"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=388", :city=>"Grundy", :teamnumber=>"388", :country=>"USA", :state=>"VA", :rookieyear=>"2000", :robotname=>"Maximum Oz 5.0", :name=>"Ratcliffe Foundation/AEP Appalachian Power/Terra Tech Engineering & Grundy High School & Buchanan County Career & Technology Center High School", :website=>"http://ghs.buc.k12.va.us", :informalname=>"Maximum Oz"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=391", :city=>"Grand Rapids", :teamnumber=>"391", :country=>"", :state=>" MI", :rookieyear=>"2000", :robotname=>"", :name=>"Grand Rapids Central High School", :website=>"http://www.t-rams.com", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=393", :city=>"Morristown", :teamnumber=>"393", :country=>"USA", :state=>"IN", :rookieyear=>"2000", :robotname=>"V8", :name=>"Rolls-Royce Corp. / Indiana Department of Workforce Development / Triumph Fabrications / Blue River Community Foundation / Bunge Morristown, IN & Morristown High School", :website=>"http://www.fmj393.com", :informalname=>"Full Metal Jackets (FMJ393)"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=395", :city=>"Bronx", :teamnumber=>"395", :country=>"USA", :state=>"NY", :rookieyear=>"2000", :robotname=>"", :name=>"The McGraw-Hill Companies/Columbia University/The New York Yankees & Morris High School Campus ", :website=>"http://www.2trainrobotics.org", :informalname=>"2 TrainRobotics"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=397", :city=>"Flint", :teamnumber=>"397", :country=>"USA", :state=>"MI", :rookieyear=>"2000", :robotname=>"", :name=>"Delphi / Siemens & Flint Southwestern Academy and Bendle High School", :website=>"http://www.firstteam397.com", :informalname=>"Knight Riders"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=398", :city=>"Ridgway", :teamnumber=>"398", :country=>"", :state=>" PA", :rookieyear=>"2000", :robotname=>"", :name=>"Metaldyne & Ridgway Area High School", :website=>"http://www.ridgwayareahighschool.com", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=399", :city=>"Lancaster", :teamnumber=>"399", :country=>"USA", :state=>"CA", :rookieyear=>"2000", :robotname=>"The Tin Man", :name=>"NASA Dryden Flight Research/Sunrise Rotary/HR Textron/INCOTEC/Northrop Grumman/Lockheed Martin/ITEA & Lancaster High School & Antelope Valley Union High School District", :website=>"http://www.team399.org", :informalname=>"Eagle Robotics"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=401", :city=>"Christiansburg", :teamnumber=>"401", :country=>"USA", :state=>"VA", :rookieyear=>"2000", :robotname=>"NSBI", :name=>"Virginia Tech School of Education & Montgomery County Public Schools", :website=>"http://www.team401.org", :informalname=>"Hokie Guard"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=404", :city=>"Petersburg", :teamnumber=>"404", :country=>"", :state=>" VA", :rookieyear=>"2000", :robotname=>"", :name=>"", :website=>"http://www.distantrage.org", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=405", :city=>"Richmond", :teamnumber=>"405", :country=>"USA", :state=>"VA", :rookieyear=>"2000", :robotname=>"", :name=>"Qimonda & Richmond Community High School", :website=>"", :informalname=>"The Chameleons"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=406", :city=>"Detroit", :teamnumber=>"406", :country=>"USA", :state=>"MI", :rookieyear=>"2000", :robotname=>"", :name=>"Chrysler Foundation -Mack Ave Engine plant & Mumford High School ", :website=>"http://www.geocities.com/mumford406", :informalname=>"Mumford Chargers"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=408", :city=>"Pompano Beach", :teamnumber=>"408", :country=>"USA", :state=>"FL", :rookieyear=>"2000", :robotname=>"", :name=>"BAE Systems, Land & Armaments & Blanche Ely High School & DeVry University", :website=>"http://www.roboticks408.com", :informalname=>"The RoboTicks"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=410", :city=>"Los Angeles, CA", :teamnumber=>"410", :country=>"", :state=>"", :rookieyear=>"2000", :robotname=>"", :name=>"The William C. Bannerman Foundation/University of Southern California (USC)", :website=>"http://mastrobotics.tripod.com", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=411", :city=>"Rockhill, SC", :teamnumber=>"411", :country=>"", :state=>"", :rookieyear=>"2000", :robotname=>"", :name=>"York Technical College/ATS of Carolinas & Northwestern High School", :website=>"", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=414", :city=>"Richmond", :teamnumber=>"414", :country=>"USA", :state=>"VA", :rookieyear=>"2000", :robotname=>"Smokie", :name=>"Farmer Machine Company / Jersey Mike's Subs / ITT Technical Institute / Capital Area Partners for Educational Reform / Henrico Education Foundation & Hermitage Technical Center", :website=>"http://www.henrico.k12.va.us/HS/HermitageTech/", :informalname=>"Smokie and the Bandits"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=415", :city=>"Anderson", :teamnumber=>"415", :country=>"", :state=>" SC", :rookieyear=>"2000", :robotname=>"", :name=>"Robert Bosch Corporation/Tri-County Technical College & Hanna High School & Hanna-Westside Extension campus & Westside High", :website=>"http://www.the415machine.org", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=416", :city=>"Richmond", :teamnumber=>"416", :country=>"", :state=>" VA", :rookieyear=>"2000", :robotname=>"", :name=>"GE College Bound Program & Armstrong High School", :website=>"http://www.JFKRobot.com", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=417", :city=>"Mt. Sinai", :teamnumber=>"417", :country=>"USA", :state=>"NY", :rookieyear=>"2000", :robotname=>"", :name=>"Brookhaven National Laboratory/Hewlett Packard & Mount Sinai High School", :website=>"", :informalname=>"Stangbot"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=418", :city=>"Austin", :teamnumber=>"418", :country=>"USA", :state=>"TX", :rookieyear=>"2000", :robotname=>"AristoPHanes", :name=>"LASA Robotics Association/3M/BAE SYSTEMS INC./National Instruments & Liberal Arts & Science Academy High School", :website=>"http://www.lasarobotics.org", :informalname=>"Purple Haze"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=421", :city=>"Bronx", :teamnumber=>"421", :country=>"USA", :state=>"NY", :rookieyear=>"2000", :robotname=>"", :name=>"Bezos Family Foundation & Alfred E. Smith H.S.", :website=>"http://www.geocities.com/enchantedforest/dell/9950/team421/team421.html", :informalname=>"The Warriors"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=422", :city=>"Richmond", :teamnumber=>"422", :country=>"USA", :state=>"VA", :rookieyear=>"2000", :robotname=>"", :name=>"New Market Corporation & Maggie L. Walker Governor's School", :website=>"http://www.team422.com", :informalname=>"Mech Tech Dragons"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=423", :city=>"Willow Grove", :teamnumber=>"423", :country=>"USA", :state=>"PA", :rookieyear=>"2000", :robotname=>"", :name=>"Cheltenham High School & Eastern Center for Arts & Technology High School & Springfield High School", :website=>"http://www.423robotics.org", :informalname=>"The Simple Machines"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=424", :city=>"Churchville", :teamnumber=>"424", :country=>"USA", :state=>"NY", :rookieyear=>"2000", :robotname=>"", :name=>"Bausch & Lomb Incorporated & Churchville-Chili High School", :website=>"http://www.team340.org", :informalname=>"GRR (Greater Rochester Robotics)"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=425", :city=>"Melbourne", :teamnumber=>"425", :country=>"USA", :state=>"FL", :rookieyear=>"2000", :robotname=>"", :name=>"LLC GovConnection, Inc/Harris Corporation/Taek Force, Inc. & Eau Gallie High School & Brevard Public Schools", :website=>"", :informalname=>"Spartans"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=433", :city=>"Flourtown", :teamnumber=>"433", :country=>"USA", :state=>"PA", :rookieyear=>"2000", :robotname=>"Antares", :name=>"Lockheed Martin Corporation/Aetna Life & Casualty Company/Comcast/Society of Women Engineers/United Phosphorus Inc. & Mount St. Joseph Academy", :website=>"http://www.firebirds433.com", :informalname=>"Firebirds"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=434", :city=>"Missouri City", :teamnumber=>"434", :country=>"USA", :state=>"TX", :rookieyear=>"2000", :robotname=>"Kracken", :name=>"Fluor/JETS/Red Oak Instruments & Hightower High School & Fort Bend ISD", :website=>"http://www.hightowerrobotics.com", :informalname=>"Kracken"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=435", :city=>"Raleigh", :teamnumber=>"435", :country=>"USA", :state=>"NC", :rookieyear=>"2000", :robotname=>"", :name=>"EMC Corporation / NASA / NCSU College of Engineering & Southeast Raleigh Magnet High School", :website=>"http://www.robodogs.org/", :informalname=>"Robodogs"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=437", :city=>"Richardson", :teamnumber=>"437", :country=>"USA", :state=>"TX", :rookieyear=>"2000", :robotname=>"Pegasus", :name=>"JC Penney & Richardson High School", :website=>"", :informalname=>"The Eagles"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=440", :city=>"Detroit", :teamnumber=>"440", :country=>"USA", :state=>"MI", :rookieyear=>"2000", :robotname=>"COMETS", :name=>"DTE ENERGY/Ford Motor Company/ITT Technical Institute/Jublee Housing Initiave & Community Devel, Corp/NASA & Cody HS High School & Detroit Public Schools", :website=>"http://groups.yahoo.com/group/robotics_team_440", :informalname=>"The Suspects"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=441", :city=>"Houston", :teamnumber=>"441", :country=>"USA", :state=>"TX", :rookieyear=>"2000", :robotname=>"Thor V", :name=>"G E Energy / The Jordan Fundamentals Inspiration Grant Program / ASME International / ITT Technical Institute / Heights Rotary & Reagan High School", :website=>"http://www.reaganrobotics.com", :informalname=>"DEVIL DOGS"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=442", :city=>"Huntsville", :teamnumber=>"442", :country=>"USA", :state=>"AL", :rookieyear=>"2000", :robotname=>"Vulcan Prime", :name=>"Boeing & New Century Tech High School & Lee Pre-Engineering Magnet High School & Columbia High School", :website=>"http://www.redstonerobotics.org", :informalname=>"Redstone Robotics"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=443", :city=>"Denver", :teamnumber=>"443", :country=>"USA", :state=>"CO", :rookieyear=>"2000", :robotname=>"LanceABot", :name=>"University of Denver & Standing Ovations for All & Ricks Center Middle School", :website=>"http://www.freelancerobotics.org", :informalname=>"Freelance Robotics"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=444", :city=>"Philadelphia", :teamnumber=>"444", :country=>"", :state=>" PA", :rookieyear=>"2000", :robotname=>"", :name=>"Lockheed Martin IS&S/Hess Corporation/School District of Philadelphia & MASTBAUM A.V.T.S. PANTHERS", :website=>"", :informalname=>"Philly's Extreme Team"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=446", :city=>"La Porte, TX", :teamnumber=>"446", :country=>"", :state=>"", :rookieyear=>"2000", :robotname=>"", :name=>"", :website=>"http://www.laporte.isd.esc4.net/campuses/lphs/robotics/2002_03/index.htm", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=447", :city=>"Anderson", :teamnumber=>"447", :country=>"USA", :state=>"IN", :rookieyear=>"2000", :robotname=>"Crushinator", :name=>"NASA/DRN Machine & Madison County High Schools", :website=>"http://www.teamroboto.org", :informalname=>"Team Roboto"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=448", :city=>"Bloomfield Hills", :teamnumber=>"448", :country=>"", :state=>" MI", :rookieyear=>"2000", :robotname=>"", :name=>"Cranbrook Kingswood School", :website=>"http://ckrobotics.tk", :informalname=>"Crandroids"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=449", :city=>"Silver Spring", :teamnumber=>"449", :country=>"USA", :state=>"MD", :rookieyear=>"2000", :robotname=>"", :name=>"NASA/ARL (Army Research Laboratory )/BAE Systems/Intelligent Automation Inc. & Montgomery Blair High School", :website=>"http://www.robot.mbhs.edu", :informalname=>"The Blair Robot Project"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=451", :city=>"Sylvania", :teamnumber=>"451", :country=>"USA", :state=>"OH", :rookieyear=>"2000", :robotname=>"", :name=>"Dana Corporation & Sylvania City Schools", :website=>"http://www.thecatattack.org/", :informalname=>"The Cat Attack"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=453", :city=>"Clinton Township", :teamnumber=>"453", :country=>"USA", :state=>"MI", :rookieyear=>"2000", :robotname=>"", :name=>"Paragon Technologies & F.V. Pankow Center & L'Anse Creuse Public Schools", :website=>"http://www.pankowcenterrobotics.com", :informalname=>"G.E.A.R.S."}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=456", :city=>"Vicksburg", :teamnumber=>"456", :country=>"USA", :state=>"MS", :rookieyear=>"2000", :robotname=>"", :name=>"JCPenney/Entergy Grand Gulf/ERDC & Vicksburg-Warren Schools", :website=>"http://www.viking-robotics.com", :informalname=>"Vikings"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=457", :city=>"San Antonio", :teamnumber=>"457", :country=>"", :state=>" TX", :rookieyear=>"2000", :robotname=>"", :name=>"SAIC/Lockheed Martin Kelly Aviation Center/Standard Aero/EG&G Logistics/Carter Burgess Engineers/Domingo Vara Chevrolet/Valero Energy Corporation/Pape Dawson Engineers/Technology Advocates of San Antonio/General Dynamics Network Systems/DeVry University/Palo Alto College & South San Antonio High School", :website=>"http://www.southsanisd.net/robotics", :informalname=>"Grease Monkeys"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=459", :city=>"Gainesville", :teamnumber=>"459", :country=>"", :state=>" FL", :rookieyear=>"2000", :robotname=>"", :name=>"Alachua County Public Schools/Fabco-Air, Inc/Subway/University of Florida College of Engineering & Eastside High School", :website=>"", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=460", :city=>"Phoenix, AZ", :teamnumber=>"460", :country=>"", :state=>"", :rookieyear=>"2000", :robotname=>"", :name=>"Motorola, Inc./Microchip Technology & Xavier College Preparatory", :website=>"http://robotics.xcp.org/", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=461", :city=>"West Lafayette", :teamnumber=>"461", :country=>"USA", :state=>"IN", :rookieyear=>"2000", :robotname=>"Rowdy Pete", :name=>"Purdue FIRST Programs/Caterpillar/Indiana Department of Workforce Development & West Lafayette Jr-Sr High School", :website=>"http://www.boilerinvasion.org", :informalname=>"Westside Boiler Invasion"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=462", :city=>"Jackson", :teamnumber=>"462", :country=>"USA", :state=>"MS", :rookieyear=>"2000", :robotname=>"", :name=>"NASA/Delphi Automotive & Provine High School Robotic Team", :website=>"http://www.rambunctiousrams.net", :informalname=>"The Rambunctious Rams"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=467", :city=>"Shrewsbury", :teamnumber=>"467", :country=>"USA", :state=>"MA", :rookieyear=>"2000", :robotname=>"", :name=>"Intel & Shrewsbury High School", :website=>"http://www.team467.org", :informalname=>"Duct Tape Bandits"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=468", :city=>"Flint", :teamnumber=>"468", :country=>"USA", :state=>"MI", :rookieyear=>"2000", :robotname=>"", :name=>"Android Industries/BAE Systems/MAIN Mfg./ITT Tech/Baker College & Flushing High School", :website=>"", :informalname=>"none entered"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=469", :city=>"Bloomfield Hills", :teamnumber=>"469", :country=>"USA", :state=>"MI", :rookieyear=>"2000", :robotname=>"Cornelius IX", :name=>"Norgren/AVL/AI/Eco-Bat/Quexco/Kostal/Gorman's Gallery/Lawrence Technological University & International Academy", :website=>"http://www.lasguerrillas.com", :informalname=>"Las Guerrillas"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=470", :city=>"Ypsilanti", :teamnumber=>"470", :country=>"USA", :state=>"MI", :rookieyear=>"2000", :robotname=>"T-10", :name=>"ITT Technical Institute/Marathon/Ypsilanti Public Schools Foundation/PTC & Ypsilanti High School", :website=>"http://470robotics.com", :informalname=>"Alpha Omega Robotics"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=471", :city=>"Fenton, MI", :teamnumber=>"471", :country=>"", :state=>"", :rookieyear=>"2000", :robotname=>"", :name=>"Lear Corporation/Weber Electric & GISD & Fenton High School", :website=>"http://www.fentoncybertigers.net", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=473", :city=>"Corvallis", :teamnumber=>"473", :country=>"USA", :state=>"MT", :rookieyear=>"2000", :robotname=>"Wylerd", :name=>"Innovative Manufacturing Solutions & Corvallis High School", :website=>"http://www.corvallis.k12.mt.us/high/ClubsAndActivities/robotics/home.html", :informalname=>"Montana State Robotics Team"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=476", :city=>"Ponca City", :teamnumber=>"476", :country=>"USA", :state=>"OK", :rookieyear=>"2000", :robotname=>"", :name=>"Precision Tool & Die/Continental Technologies/ConocoPhillips/Oklahoma State University College of Engineering (CEAT) & Ponca City High School", :website=>"http://www.team476.com/", :informalname=>"Wildcats"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=480", :city=>"Oakland, CA", :teamnumber=>"480", :country=>"", :state=>"", :rookieyear=>"2000", :robotname=>"", :name=>"", :website=>"http://engineering.lbl.gov/team480/", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=481", :city=>"San Pablo", :teamnumber=>"481", :country=>"", :state=>" CA", :rookieyear=>"2000", :robotname=>"", :name=>"Google, Inc./TAP Plastics of El Cerrito/The Ed Fund/Contra Costa College & Middle College High School & De Anza High School", :website=>"http://www.481hitchhikers.com/", :informalname=>"San Pablo"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=484", :city=>"Havertown", :teamnumber=>"484", :country=>"USA", :state=>"PA", :rookieyear=>"2000", :robotname=>"Stealth Racer", :name=>"Lockheed-Martin/GE Volunteers & Haverford High School", :website=>"http://www.team484.org", :informalname=>"Roboforce"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=486", :city=>"Wallingford", :teamnumber=>"486", :country=>"USA", :state=>"PA", :rookieyear=>"2000", :robotname=>"", :name=>"Boeing/3M Dyneon/Kimberly-Clark Corp./McNeil Consumer and Specialty Pharmaceuticals & Strath Haven HS", :website=>"http://www.team486.com", :informalname=>"Positronic Panthers"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=487", :city=>"Erdenheim", :teamnumber=>"487", :country=>"", :state=>" PA", :rookieyear=>"2000", :robotname=>"", :name=>"", :website=>"http://www.487robotics.org", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=488", :city=>"Seattle", :teamnumber=>"488", :country=>"USA", :state=>"WA", :rookieyear=>"2000", :robotname=>"IX", :name=>"Team Boeing/Microsoft/OSPI & Franklin High School", :website=>"http://www.teamxbot.org", :informalname=>"Team XBot"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=491", :city=>"Bridgeport, CT", :teamnumber=>"491", :country=>"", :state=>"", :rookieyear=>"2000", :robotname=>"", :name=>"UTC/Sikorsky ,Harding High School, Bullard Havens, Amity", :website=>"", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=492", :city=>"Bellevue", :teamnumber=>"492", :country=>"USA", :state=>"WA", :rookieyear=>"2001", :robotname=>"Athena", :name=>"Boeing / OSPI / Sunstream Boatlifts / International School PTSA & INTERNATIONAL SCHOOL ASB", :website=>"http://www.titanrobotics.net/", :informalname=>"Titan Robotics Club"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=494", :city=>"Goodrich", :teamnumber=>"494", :country=>"USA", :state=>"MI", :rookieyear=>"2001", :robotname=>"My Favorite Robot", :name=>"Chrysler Foundation/General Motors/ITT & Goodrich High School", :website=>"http://www.494martians.com/", :informalname=>"Martians"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=496", :city=>"Port Jefferson", :teamnumber=>"496", :country=>"USA", :state=>"NY", :rookieyear=>"2001", :robotname=>"", :name=>"Port Jefferson Robotics Club", :website=>"", :informalname=>"Powerhouse"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=497", :city=>"Orange", :teamnumber=>"497", :country=>"", :state=>" VA", :rookieyear=>"2001", :robotname=>"", :name=>"", :website=>"http://www.orangerobotics.org/home.htm", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=498", :city=>"Glendale", :teamnumber=>"498", :country=>"USA", :state=>"AZ", :rookieyear=>"2001", :robotname=>"", :name=>"Honeywell International/Vitron Manufacturing/Kathy's Music & Cactus High School", :website=>"http://www.team498.org", :informalname=>"Cobra Commanders"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=499", :city=>"San Antonio", :teamnumber=>"499", :country=>"USA", :state=>"TX", :rookieyear=>"2001", :robotname=>"", :name=>"Kelly Aviation Lockheed Martin/BAE SYSTEMS/ASME - International Petroleum Technology Institute/Young Engineers Support Program/Security Service Federal Credit Union/Southwest Research Institute/Akimeka, LLC/J Embedded/ITT Tech/Northwest Vista College/Texas Institute for Educational Robotics/San Antonio College & Edgewood ISD", :website=>"http://www.toltechs.com", :informalname=>"Toltechs"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=500", :city=>"New London", :teamnumber=>"500", :country=>"USA", :state=>"CT", :rookieyear=>"2001", :robotname=>"Objie 10", :name=>"U.S. Coast Guard Academy, USCG Foundation, USCG Alumni Association & Local Supporters & Grosso Regional Vocational Technical High School & Local Home School Community & New London Magnet High School & Westerly, RI High School", :website=>"http://www.cgateamusa.org", :informalname=>"Team 500/Team USA"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=501", :city=>"Manchester", :teamnumber=>"501", :country=>"USA", :state=>"NH", :rookieyear=>"2001", :robotname=>"The Power Knight", :name=>"BURNDY / Dynamic Network Services & Manchester High School WEST", :website=>"http://www.powerknights.com", :informalname=>"The PowerKnights"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=503", :city=>"Novi", :teamnumber=>"503", :country=>"USA", :state=>"MI", :rookieyear=>"2001", :robotname=>"Shermanator", :name=>"Magna Automotive Seating & Novi High School", :website=>"http://www.intiernovi503.com", :informalname=>"Frog Force"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=505", :city=>",", :teamnumber=>"505", :country=>"", :state=>"", :rookieyear=>"2001", :robotname=>"", :name=>"Con Edison/Westchester Community College & Saunders Trades and Technical High School", :website=>"", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=507", :city=>"Greenville", :teamnumber=>"507", :country=>"", :state=>" SC", :rookieyear=>"2001", :robotname=>"", :name=>"Walmart/Electrolock/Computer Dynamics & Carolina Academy", :website=>"http://www.carolinaroboteers.com", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=508", :city=>"", :teamnumber=>"508", :country=>"", :state=>"", :rookieyear=>"2001", :robotname=>"", :name=>"", :website=>"", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=509", :city=>"Bedford", :teamnumber=>"509", :country=>"USA", :state=>"NH", :rookieyear=>"2001", :robotname=>"", :name=>"Insight Technology, Inc./BAE Systems/Electrocraft & Bedford High School", :website=>"http://www.redstorm509.org", :informalname=>"Red Storm"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=510", :city=>"Highland Springs", :teamnumber=>"510", :country=>"", :state=>" VA", :rookieyear=>"2001", :robotname=>"Danno", :name=>"Qimonda, Richmond/CapTech/Henrico Education Foundation/CAPER & Highland Springs Technical Center", :website=>"", :informalname=>"Highland Springs"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=514", :city=>"Miller Place", :teamnumber=>"514", :country=>"USA", :state=>"NY", :rookieyear=>"2001", :robotname=>"Willy the Aluminum Mammoth", :name=>"G & L Precision Corp/Miller Place PTO/MP Robotics Boosters & Miller Place Schools", :website=>"http://www.millerplacerobotics.com", :informalname=>"Entropy"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=515", :city=>"Detroit", :teamnumber=>"515", :country=>"USA", :state=>"MI", :rookieyear=>"2001", :robotname=>"Oz", :name=>"GM CCRW & Osborn University High School", :website=>"http://www.technoknights.com", :informalname=>"TechnoKnights"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=518", :city=>"Grand Rapids", :teamnumber=>"518", :country=>"USA", :state=>"MI", :rookieyear=>"2001", :robotname=>"", :name=>"Gumbo / GRAPCEP Davenport / Steelcase / IST / GE Aviation Systems & Ottawa Hills High School", :website=>"http://team518.freepgs.com/", :informalname=>"Blue Steel"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=519", :city=>"Detroit", :teamnumber=>"519", :country=>"USA", :state=>"MI", :rookieyear=>"2001", :robotname=>"", :name=>"General Motors Foundation GM CCRW/Harvey Industries/ITT Technical Institute & Golightly Career and Technical Center & Pershing High School", :website=>"http://team519.bravehost.com", :informalname=>"Robo Masters"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=521", :city=>"Waterford", :teamnumber=>"521", :country=>"", :state=>" CT", :rookieyear=>"2001", :robotname=>"", :name=>"Dominion Millstone Power Station & Waterford High School", :website=>"http://www.waterfordschools.org/whsnew/robotics_club/home.html", :informalname=>"Waterford"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=522", :city=>"Staten Island", :teamnumber=>"522", :country=>"USA", :state=>"NY", :rookieyear=>"2001", :robotname=>"Maggie Mae", :name=>"New York Container Terminal/The Staten Island Foundation/The Port Authority of NY & NJ/John Tabacco SR. Foundation/Verizon Foundation/N.Y.S. Senator Diane J. Savino/Bloomberg/Con Edison & Mckee Vocational High School", :website=>"http://www.robowizards.com", :informalname=>"ROBO WIZARDS"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=525", :city=>"Cedar Falls", :teamnumber=>"525", :country=>"USA", :state=>"IA", :rookieyear=>"2001", :robotname=>"Chaos", :name=>"John Deere Waterloo Operations/Rockwell Collins/DISTek Integration, Inc/NCK Software/Eason Grant/Iowa State University College of Engineering/UNI College of Natural Sciences and Iowa Space Grant Consortium & Cedar Falls High School", :website=>"http://fc.cedar-falls.k12.ia.us/~robotics/", :informalname=>"Swartdogs"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=527", :city=>"No. Massapequa", :teamnumber=>"527", :country=>"USA", :state=>"NY", :rookieyear=>"2001", :robotname=>"", :name=>"Plainedge High School Red Dragons", :website=>"http://www.plainedgeschools.org/hsrobotics", :informalname=>"Dragons"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=528", :city=>"Lansdale", :teamnumber=>"528", :country=>"", :state=>" PA", :rookieyear=>"2001", :robotname=>"", :name=>"Visteon Corp. & North Montco Technical Career Center & North Penn High School", :website=>"http://www.northpennrobotics.org", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=529", :city=>"Mansfield", :teamnumber=>"529", :country=>"USA", :state=>"MA", :rookieyear=>"2001", :robotname=>"", :name=>"NASA & Invensys Process Systems & Mansfield High School", :website=>"http://www.mansfieldrobotics.org", :informalname=>"The Mansfield Hornets"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=533", :city=>"Lindenhurst", :teamnumber=>"533", :country=>"USA", :state=>"NY", :rookieyear=>"2001", :robotname=>"the Drifter", :name=>"ITT Industries/BAE SYSTEMS/L3 Communications Narda Microwave & Lindenhurst Senior High School", :website=>"http://www.altf4.net/lindenhurstrobotics/", :informalname=>"PSICOTICS"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=535", :city=>"Markle, IN", :teamnumber=>"535", :country=>"", :state=>"", :rookieyear=>"2001", :robotname=>"", :name=>"Wabash Technologies", :website=>"", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=537", :city=>"Sussex", :teamnumber=>"537", :country=>"USA", :state=>"WI", :rookieyear=>"2001", :robotname=>"", :name=>"GE Volunteers of GE Healthcare/Rockwell Automation/QuadTech a division of Quadgraphics/SRT-Nypro & Hamilton High School ", :website=>"http://www.team537.com", :informalname=>"Charger Robotics"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=538", :city=>"Arab", :teamnumber=>"538", :country=>"USA", :state=>"AL", :rookieyear=>"2001", :robotname=>"Sir George", :name=>"Boeing/Arab Optimist Club/AUVSI & Arab High School", :website=>"http://www.arabcityschools.org/ahs/robotics/home.htm", :informalname=>"Dragon Slayers"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=539", :city=>"Richmond", :teamnumber=>"539", :country=>"USA", :state=>"VA", :rookieyear=>"2001", :robotname=>"", :name=>"UNITE with Virgil Brackins & Trinity Episcopal School", :website=>"http://trinityes.org/", :informalname=>"Titans"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=540", :city=>"Henrico", :teamnumber=>"540", :country=>"USA", :state=>"VA", :rookieyear=>"2001", :robotname=>"TALON", :name=>"ShowBest Fixture Inc./Piedmont Metal Fabricators Inc./TKL/mindsensors.com/ITT Technical Institute/CAPER of Richmond, VA./Dominion Va Power/ECPI College of Technology/OCE/Genworth Financial/Henrico Education Foundation, Inc. & Mills E. Godwin High School", :website=>"http://www.team540.com", :informalname=>"TALON 540 Godwin Robotics"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=541", :city=>"Cleveland", :teamnumber=>"541", :country=>"", :state=>" OH", :rookieyear=>"2001", :robotname=>"", :name=>"", :website=>"http://maxshayes.hostars.com/index.html", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=545", :city=>"Levittown", :teamnumber=>"545", :country=>"USA", :state=>"NY", :rookieyear=>"2001", :robotname=>"", :name=>"Island Trees High School", :website=>"http://itrobotics.virtualave.net", :informalname=>"ROBO-DAWGS"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=546", :city=>"Woodbridge", :teamnumber=>"546", :country=>"", :state=>" CT", :rookieyear=>"2001", :robotname=>"", :name=>"UTC Sikorsky & Amity Regional & Harding High School", :website=>"http://www.amityregion5.org/technotics", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=547", :city=>"Fayetteville", :teamnumber=>"547", :country=>"USA", :state=>"TN", :rookieyear=>"2001", :robotname=>"", :name=>"Lincoln Co. High School Falcon Engineering And Robotics", :website=>"", :informalname=>"F.E.A.R."}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=548", :city=>"Northville", :teamnumber=>"548", :country=>"USA", :state=>"MI", :rookieyear=>"2001", :robotname=>"", :name=>"Vector CANtech/General Motors Powertrain/Shiloh Industries & Northville High School", :website=>"http://www.robostangs.com", :informalname=>"Robostangs"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=549", :city=>"Leominster", :teamnumber=>"549", :country=>"USA", :state=>"MA", :rookieyear=>"2001", :robotname=>"LEW", :name=>"Mar-Lee Companies/Raytheon/Steel Fab inc/Solidus Technical Solutions & Leominster High School", :website=>"http://www.devildawgs.com", :informalname=>"DevilDawgs"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=550", :city=>"Washington", :teamnumber=>"550", :country=>"", :state=>" NJ", :rookieyear=>"2001", :robotname=>"", :name=>"Warren County Technical School", :website=>"", :informalname=>"NanKnights"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=554", :city=>"Ft. Thomas", :teamnumber=>"554", :country=>"USA", :state=>"KY", :rookieyear=>"2001", :robotname=>"THE CAKE EATER", :name=>"Procter & Gamble & Highlands High School", :website=>"http://www.HHSrobots.org", :informalname=>"The Bluegrease Crew"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=555", :city=>"Montclair", :teamnumber=>"555", :country=>"USA", :state=>"NJ", :rookieyear=>"2001", :robotname=>"The Partially Robotic Bulldog of Death, Destruction, & Graci", :name=>"Judy and Josh Weston/Montclair Society of Engineers & Montclair Board of Education", :website=>"http://www.team555.org", :informalname=>"Montclair Robotics"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=557", :city=>"Detroit", :teamnumber=>"557", :country=>"", :state=>" MI", :rookieyear=>"2001", :robotname=>"", :name=>"", :website=>"http://www.teamFordFIRST.org/Team557", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=558", :city=>"New Haven", :teamnumber=>"558", :country=>"USA", :state=>"CT", :rookieyear=>"2001", :robotname=>"The Great Glass Elevator", :name=>"Yale University/Northeast Utilities/JC Penney/United Illuminating/JCPenney & H.R. Career H.S.", :website=>"http://www.robosquad558.com", :informalname=>"Robo Squad"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=562", :city=>"Fitchburg", :teamnumber=>"562", :country=>"USA", :state=>"MA", :rookieyear=>"2001", :robotname=>"Sparky", :name=>"Montachusett Regional Vocational Technical School", :website=>"http://www.montytech.net/Robotics/", :informalname=>"SPARK - Students Pursuing Applied Robotics Knowledge"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=563", :city=>"Phila", :teamnumber=>"563", :country=>"", :state=>" PA", :rookieyear=>"2001", :robotname=>"Steelrelacus", :name=>"BOK Tech High School & Sunrise Foundation", :website=>"http://geocities.com/BOKTEAM563/", :informalname=>"Thrashers"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=564", :city=>"Middle Island", :teamnumber=>"564", :country=>"USA", :state=>"NY", :rookieyear=>"2001", :robotname=>"Serenity", :name=>"Longwood High School", :website=>"http://www.longwoodrobotics.org", :informalname=>"Digital Impact"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=566", :city=>"Centereach", :teamnumber=>"566", :country=>"", :state=>" NY", :rookieyear=>"2001", :robotname=>"", :name=>"Middle Country School District", :website=>"http://www.geocities.com/mcsdrobotics", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=568", :city=>"Anchorage", :teamnumber=>"568", :country=>"USA", :state=>"AK", :rookieyear=>"2001", :robotname=>"Absolute Zero Mark VIIII", :name=>"AREA/BP & Dimond High", :website=>"http://www.dimondrobotics.com", :informalname=>"Nerds of the North"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=569", :city=>"Westbury", :teamnumber=>"569", :country=>"USA", :state=>"NY", :rookieyear=>"2001", :robotname=>"", :name=>"Heads Up Construction/East Meadow Chamber of Commerce/East Meadow Kiwanis & W.T. Clarke H.S.", :website=>"http://[email protected]", :informalname=>"Flounders"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=570", :city=>"Glen Cove", :teamnumber=>"570", :country=>"", :state=>" NY", :rookieyear=>"2001", :robotname=>"", :name=>"Glen Cove High School", :website=>"http://www.cm4.com/catalysts", :informalname=>"Team Phoenix"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=571", :city=>"Windsor", :teamnumber=>"571", :country=>"USA", :state=>"CT", :rookieyear=>"2001", :robotname=>"Guido", :name=>"UTC Otis Elevator/Griffin Land/Alstom & Windsor High School & MLC High School", :website=>"http://team.paragon.org", :informalname=>"Team Paragon"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=573", :city=>"Bloomfield Hills", :teamnumber=>"573", :country=>"USA", :state=>"MI", :rookieyear=>"2001", :robotname=>"Chewballa Reloaded", :name=>"The Chrysler Foundation / Diversified Tooling Group & Brother Rice High School & Marian High School", :website=>"http://www.mechwarriors573.com/", :informalname=>"Mech Warriors"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=574", :city=>",", :teamnumber=>"574", :country=>"", :state=>"", :rookieyear=>"2001", :robotname=>"", :name=>"Credit Suisse First Boston/ADP/Consolidated Edison/City College of the City University of New York & William Howard Taft High School", :website=>"", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=578", :city=>"Fairport", :teamnumber=>"578", :country=>"USA", :state=>"NY", :rookieyear=>"2001", :robotname=>"", :name=>"Gleason Works & Fairport High School", :website=>"http://www.fairportfirst.com/", :informalname=>"Blue Lightning"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=580", :city=>"North Hollywood", :teamnumber=>"580", :country=>"USA", :state=>"CA", :rookieyear=>"2001", :robotname=>"S.T.U.", :name=>"AT&T/BAE Systems/IMS & Campbell Hall School", :website=>"", :informalname=>"RoboticVikes"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=581", :city=>"San Jose", :teamnumber=>"581", :country=>"USA", :state=>"CA", :rookieyear=>"2001", :robotname=>"Blazer9", :name=>"Boeing / BAE Systems & San Jose High Academy", :website=>"http://sjharobotics.org", :informalname=>"Blazing Bulldogs"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=582", :city=>"Jacksonville", :teamnumber=>"582", :country=>"", :state=>" FL", :rookieyear=>"2001", :robotname=>"", :name=>"Duval County Schools & W.M. Raines High School", :website=>"http://www.educationalcentral.org/wmrh", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=585", :city=>"Tehachapi", :teamnumber=>"585", :country=>"USA", :state=>"CA", :rookieyear=>"2001", :robotname=>"Robo Tux 3.0", :name=>"NASA/Arcata Associates, Inc./ITEA & Tehachapi High School", :website=>"http://www.team585.org", :informalname=>"Cyber Penguins"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=587", :city=>"Hillsborough", :teamnumber=>"587", :country=>"USA", :state=>"NC", :rookieyear=>"2001", :robotname=>"OCCAM IX:Acceleration", :name=>"J W Faircloth and Son & Orange High School & Cedar Ridge High School", :website=>"http://www.team587.org", :informalname=>"Hedgehogs"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=588", :city=>"Jacksonville", :teamnumber=>"588", :country=>"", :state=>" FL", :rookieyear=>"2001", :robotname=>"", :name=>"", :website=>"http://www.aprtech.org/", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=589", :city=>"La Crescenta", :teamnumber=>"589", :country=>"USA", :state=>"CA", :rookieyear=>"2001", :robotname=>"", :name=>"NASA JPL & Crescenta Valley High School", :website=>"http://www.cvhsrobotics.org", :informalname=>"FalKON"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=590", :city=>"Choctaw", :teamnumber=>"590", :country=>"USA", :state=>"MS", :rookieyear=>"2001", :robotname=>"Tushka IX", :name=>"NASA/Stennis Space Center & Choctaw Central High School", :website=>"http://www.cc.bia.edu/nasa/robotics/robotics.htm", :informalname=>"Chahta Warriors"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=596", :city=>"Hopkinton", :teamnumber=>"596", :country=>"", :state=>" MA", :rookieyear=>"2001", :robotname=>"", :name=>"Hopkinton High School", :website=>"http://www.hopkinton.k12.ma.us/high/schoollife/robotics/index.htm", :informalname=>"Hopkinton"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=597", :city=>"Los Angeles", :teamnumber=>"597", :country=>"USA", :state=>"CA", :rookieyear=>"2001", :robotname=>"Capella", :name=>"NASA-JPL/Raytheon/Southern Christian Leadership Council/USC-MESA/Kissick Family Foundation/L. A. City Councilman Bernard C. Parks/Los Angeles Trade Tech/El Camino College/Iridescent/Lannie Foster (Field Deputy) Office of Margaurite LaMotte/Teledyne/Zoe & Steven Green/Board of Education Member, Margaurite Poindexter LaMotte, District 1/Creative Affair Universal Music Publishing Group/Avis Rent a Car/Dr. Eileen Goodes/Gues Sol Services & Academy of Information Technology (AOIT) & Dr. Judy Flesh Rosenberg & Regina Boutte, Assistant Principal & Foshay Learning Center", :website=>"http://www.team597.net", :informalname=>"Wolverines"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=598", :city=>"Woodland Hills", :teamnumber=>"598", :country=>"", :state=>" CA", :rookieyear=>"2001", :robotname=>"", :name=>"", :website=>"", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=599", :city=>"Granada Hills", :teamnumber=>"599", :country=>"USA", :state=>"CA", :rookieyear=>"2001", :robotname=>"Neurologist", :name=>"California State University, Northridge / St. Jude Medical & Granada Hills Charter High School", :website=>"", :informalname=>"Robodox"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=600", :city=>"Lynchburg", :teamnumber=>"600", :country=>"", :state=>" VA", :rookieyear=>"2001", :robotname=>"", :name=>"AREVA/Region 2000 Technology Council & Lynchburg City Schools", :website=>"http://team600.com/", :informalname=>"RamRod Robotics"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=601", :city=>"Hampton Bays, NY", :teamnumber=>"601", :country=>"", :state=>"", :rookieyear=>"2001", :robotname=>"", :name=>"Riverhead Bld. Suppy of Hampton Bays/ Thank You Scott Stover!/Tony Galgano and Mickey Shields (BBB) & Hampton Bays Jr/Sr High School", :website=>"http://HamptonBays.k12.ny.us/", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=602", :city=>"Leesburg", :teamnumber=>"602", :country=>"", :state=>" VA", :rookieyear=>"2001", :robotname=>"", :name=>"SWSG/Clark Construction/Diversified Educational Systems & Monroe Technology Center", :website=>"", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=604", :city=>"San Jose", :teamnumber=>"604", :country=>"USA", :state=>"CA", :rookieyear=>"2001", :robotname=>"", :name=>"BAE SYSTEMS/IBM/Western Digital/Google/QMD/Siemens/Sierra Radio Systems/Exatron/Professional Plastics & Leland High School", :website=>"http://604robotics.com", :informalname=>"Quixilver"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=605", :city=>",", :teamnumber=>"605", :country=>"", :state=>"", :rookieyear=>"2001", :robotname=>"", :name=>"", :website=>"", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=606", :city=>"Los Angeles", :teamnumber=>"606", :country=>"USA", :state=>"CA", :rookieyear=>"2001", :robotname=>"", :name=>"Boeing/Raytheon/Los Angeles Trade Tech College & King Drew High School", :website=>"http://www.robotics-team606.com", :informalname=>"Cyber Eagles"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=610", :city=>"Toronto", :teamnumber=>"610", :country=>"Canada", :state=>"ON", :rookieyear=>"2001", :robotname=>"Coyobot X", :name=>"Corporate Pharmacy/Bangor Metals/Diteba Research Laboratories Inc./Extrude-A-Trim Aluminum Warehouse & Crescent School", :website=>"http://robotics.crescentschool.org/", :informalname=>"The Coyotes"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=611", :city=>"McLean", :teamnumber=>"611", :country=>"USA", :state=>"VA", :rookieyear=>"2001", :robotname=>"Otto VI", :name=>"Explus Inc. & Langley High School", :website=>"http://www.langleyrobotics.com", :informalname=>"Saxons"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=612", :city=>"Chantilly", :teamnumber=>"612", :country=>"USA", :state=>"VA", :rookieyear=>"2001", :robotname=>"", :name=>"Northrop Grumman/Micron Technology Virginia/SAIC/Noblis & Chantilly Academy", :website=>"http://chantillyrobotics.org/", :informalname=>"Chantilly Robotics"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=613", :city=>"Somerset", :teamnumber=>"613", :country=>"USA", :state=>"NJ", :rookieyear=>"2001", :robotname=>"Moses", :name=>"Franklin High School", :website=>"", :informalname=>"RoboWarriors"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=614", :city=>"Alexandria", :teamnumber=>"614", :country=>"USA", :state=>"VA", :rookieyear=>"2001", :robotname=>"Phoenix", :name=>"BAE Systems/Defense Threat Reduction Agency/US Army Night Vision and Electronic Sensors Directorate/Defense Acquisitions Agency/Federal Aviation Administration/US Patent Office/US Department of Agriculture/Naval Research Laboratory & Hayfield Secondary School & West Potomac High School", :website=>"http://Team614Robotics.com", :informalname=>"Night Hawks"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=615", :city=>"Washington", :teamnumber=>"615", :country=>"USA", :state=>"DC", :rookieyear=>"2001", :robotname=>"DOC VIII", :name=>"NASA & Ballou Senior High School", :website=>"", :informalname=>"Knights"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=616", :city=>"Courtland", :teamnumber=>"616", :country=>"", :state=>" VA", :rookieyear=>"2001", :robotname=>"", :name=>"Baggett Metal/International Paper/Rosemary Power & Southampton Technical Career Center", :website=>"http://ircorp.fnsnet.net", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=617", :city=>"Highland Springs", :teamnumber=>"617", :country=>"USA", :state=>"VA", :rookieyear=>"2001", :robotname=>"", :name=>"Highland Springs High School", :website=>"http://www.team617.com", :informalname=>"Enginerds"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=618", :city=>"Philadelphia", :teamnumber=>"618", :country=>"", :state=>" PA", :rookieyear=>"2001", :robotname=>"Armed Mutation", :name=>"School District of Philadelphia / ITT Technical Institute / JMI Software Consultants Inc. / Applied Industrial Technologies & GEAR-UP & Edison Fareira High School", :website=>"", :informalname=>"Philadelphia"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=619", :city=>"Charlottesville", :teamnumber=>"619", :country=>"USA", :state=>"VA", :rookieyear=>"2001", :robotname=>"Hoo-E", :name=>"University of Virginia/Booz Allen Hamilton/Cableform, Inc./Parker Intellectual Property Law Firm, PLC/Renaissance Man/AXIOM New Product Development/Charlottesville Venture Group & Charlottesville Albemarle High Schools", :website=>"http://CARobotics.org", :informalname=>"Cavalier Robotics"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=620", :city=>"Vienna", :teamnumber=>"620", :country=>"USA", :state=>"VA", :rookieyear=>"2001", :robotname=>"Warbot", :name=>"The PTR Group / SAIC / BAE Systems / Exxon Mobil / Atlantic Exhibits & James Madison High School", :website=>"http://www.jmhsrobotics.org", :informalname=>"Warbots"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=623", :city=>"Vienna", :teamnumber=>"623", :country=>"USA", :state=>"VA", :rookieyear=>"2001", :robotname=>"TBD", :name=>"Lockheed Martin/BAE SYSTEMS/SAIC/Phadia/IEEE/Telford Technologies & Oakton High School Academic Boosters & Oakton High School", :website=>"http://www.team623.org", :informalname=>"OHS Robotics"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=624", :city=>"Katy", :teamnumber=>"624", :country=>"USA", :state=>"TX", :rookieyear=>"2001", :robotname=>"", :name=>"BP America/Oceaneering & Cinco Ranch High School", :website=>"http://www.team624.org", :informalname=>"CRyptonite"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=632", :city=>"Union City, CA", :teamnumber=>"632", :country=>"", :state=>"", :rookieyear=>"2001", :robotname=>"", :name=>"Able-Baker Automation Inc./Agile Automation/TriCed & James Logan High School", :website=>"http://www.geocities.com/jlrobotic/robotic.htm", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=633", :city=>"Tacoma, WA", :teamnumber=>"633", :country=>"", :state=>"", :rookieyear=>"2001", :robotname=>"", :name=>"Vedimex Inc./NASA & Henry Foss High School", :website=>"", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=634", :city=>"Van Nuys", :teamnumber=>"634", :country=>"", :state=>" CA", :rookieyear=>"2001", :robotname=>"", :name=>"Van Nuys High School", :website=>"http://www.lausd.k12.ca.us/vnhs/Tool_Academy/robotics.htm", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=636", :city=>"", :teamnumber=>"636", :country=>"", :state=>"", :rookieyear=>"2001", :robotname=>"", :name=>"", :website=>"", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=637", :city=>"Montville Township", :teamnumber=>"637", :country=>"", :state=>" NJ", :rookieyear=>"2001", :robotname=>"Mr. T", :name=>"Marotta Controls, Inc. & Montville Twp. High School", :website=>"http://www.montville.net/highschool/robotics", :informalname=>"MR. T"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=638", :city=>"Midlothian", :teamnumber=>"638", :country=>"", :state=>" VA", :rookieyear=>"2001", :robotname=>"", :name=>"DuPont Advanced Fibers Systems & Clover Hill High School", :website=>"", :informalname=>"Midlothian"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=639", :city=>"Ithaca", :teamnumber=>"639", :country=>"USA", :state=>"NY", :rookieyear=>"2001", :robotname=>"", :name=>"Kionix / BAE Systems / Goodrich-Ithaco Space Systems / CBORD / Park Foundation / TransCOR Information Technologies / Autodesk / VFW Post 961 / Incodema / IPEI / AccuFab / BorgWarner Morse TEC / Innovative Metals / Tru-Cut Technologies & Ithaca High School", :website=>"http://www.team639.org", :informalname=>"Code Red Robotics"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=640", :city=>"Jamaica", :teamnumber=>"640", :country=>"USA", :state=>"NY", :rookieyear=>"2001", :robotname=>"Beastess", :name=>"Con Edison/Port Authority of New York and New Jersey & Thomas A. Edison CTE High School", :website=>"http://www.roboelite.com", :informalname=>"Robo Elite"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=642", :city=>"Parkersburg, WV", :teamnumber=>"642", :country=>"", :state=>"", :rookieyear=>"2001", :robotname=>"", :name=>"DuPont/Simonton Windows/McHenry Electric/Murray's Sheet Metal/Parkersburg Tool Company/St. Joseph's Hospital/Lowe's & Parkersburg High School", :website=>"http://phs.wood.k12.wv.us/robot3/index.html", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=644", :city=>"Pearl River, LA", :teamnumber=>"644", :country=>"", :state=>"", :rookieyear=>"2001", :robotname=>"", :name=>"Kelly Gene Cook, Sr Charitable Foundation/So'Moda, Inc/Defense Information Systems Agency", :website=>"http://www.angelfire.com/droid/teammambo/PRHS.htm", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=647", :city=>"Killeen", :teamnumber=>"647", :country=>"USA", :state=>"TX", :rookieyear=>"2001", :robotname=>"", :name=>"NASA/Operational Test Command U.S. Army/Houston Endowment and Houston FIRST/Central Texas STEM FOUNDATION/Gen. (R) Robert M. Shoemaker & Killeen Independent School District & Robert M. Shoemaker High School STEM Academy", :website=>"https://www.killeenisd.org/schools/high/stem/Cyberwolves/FIRST647/index.html", :informalname=>"Cyberwolves"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=648", :city=>"Quad Cities", :teamnumber=>"648", :country=>"USA", :state=>"IL", :rookieyear=>"2001", :robotname=>"Hailfire", :name=>"Ken-Tronics/John Deere/SME & Sherrard High School & Davenport West High School & Moline High School", :website=>"http://www.qcelite.com/", :informalname=>"Q. C. ELITE"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=649", :city=>"Saratoga", :teamnumber=>"649", :country=>"USA", :state=>"CA", :rookieyear=>"2001", :robotname=>""The Saratoga Challenged"", :name=>"NASA & Saratoga High School", :website=>"http://www.mset649.org", :informalname=>"MSET"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=650", :city=>"Flora", :teamnumber=>"650", :country=>"", :state=>" IL", :rookieyear=>"2001", :robotname=>"", :name=>"Hella Electronics Corporation/Illinois Eastern Community Colleges/Wabash Valley College & FLora High School & Clay City High School & Louiisville High School & Cisne High School", :website=>"http://www.hella650.com", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=651", :city=>"Mar Lin", :teamnumber=>"651", :country=>"", :state=>" PA", :rookieyear=>"2001", :robotname=>"", :name=>"", :website=>"http://www.northschuylkill.net/Robotics%20folder/Robotics/index.html", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=652", :city=>"Erie, PA", :teamnumber=>"652", :country=>"", :state=>"", :rookieyear=>"2001", :robotname=>"", :name=>"NASA Goddard Space Flight Center & Seneca High School", :website=>"http://wasd.iu5.org/seneca/robotics/index.html", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=653", :city=>"San Antonio", :teamnumber=>"653", :country=>"USA", :state=>"TX", :rookieyear=>"2001", :robotname=>"", :name=>"Boeing/J.C. Penny/JCPenney & Edison High School", :website=>"http://www.edisonengineering.org", :informalname=>"NOSIDE"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=658", :city=>",", :teamnumber=>"658", :country=>"", :state=>"", :rookieyear=>"2001", :robotname=>"", :name=>"General Motors Metal Fab Divsion & Godwin Heights High School", :website=>"", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=660", :city=>"Round Rock", :teamnumber=>"660", :country=>"USA", :state=>"TX", :rookieyear=>"2001", :robotname=>"Marvin", :name=>"BAE SYSTEMS & Round Rock High School", :website=>"http://www.roundrockrobotics.net/index2.htm", :informalname=>"Dragons"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=662", :city=>"Colorado Springs", :teamnumber=>"662", :country=>"USA", :state=>"CO", :rookieyear=>"2001", :robotname=>"Crazy Train", :name=>"Verizon Foundation Volunteer Incentive Program / PC Brokers / Project Solutions LLC & Academy School District 20", :website=>"http://www.rockymountainrobotics.com", :informalname=>"Rocky Mountain Robotics"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=663", :city=>"Whitinsville", :teamnumber=>"663", :country=>"USA", :state=>"MA", :rookieyear=>"2001", :robotname=>"Barney", :name=>"Motorola Foundation & Whitinsville Christian School, High School", :website=>"http://www.wcsrobotics.com/", :informalname=>"Robonauts"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=665", :city=>"Orlando", :teamnumber=>"665", :country=>"USA", :state=>"FL", :rookieyear=>"2001", :robotname=>"Vierling (pronounced "FEAR-ling")", :name=>"Boeing/DeVry University/Lockheed Martin/Walt Disney World/Miller Bearings and Motion Systems/Fluid Power Society/Goldstar Machine & Tool & Oak Ridge H.S. & Edgewater H.S. & Cypress Creek High School", :website=>"", :informalname=>"M.A.Y.H.E.M."}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=668", :city=>"San Jose", :teamnumber=>"668", :country=>"USA", :state=>"CA", :rookieyear=>"2001", :robotname=>"Mecha Ape", :name=>"BAE Systems / PTC / McHale Creative / NASA Ames / Coast Aluminum and Architectural, INC. / Ms. Cindy Gilbert / Garland-Sturges& Quirk & Pioneer High School ASB & Los Gatos High School", :website=>"http://www.theapesofwrath.org", :informalname=>"The Apes of Wrath"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=670", :city=>"Cupertino", :teamnumber=>"670", :country=>"USA", :state=>"CA", :rookieyear=>"2001", :robotname=>"Mustang VI", :name=>"Symantec/Eaton Family/Low Family/Kaushal Family & Homestead High School", :website=>"", :informalname=>"Homestead Robotics"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=675", :city=>"Rohnert Park", :teamnumber=>"675", :country=>"USA", :state=>"CA", :rookieyear=>"2001", :robotname=>"Weavinator", :name=>"Carl Pearlman and Associates / Expressway Self Storage / Brian Purcell / Rodney Sweet Chiropractic Care / Roadrunner Mobile Truck Repair / Twin Oaks Garage / RKF Consulting / Double Decker Lanes & Technology High School", :website=>"http://www.techhighteam675.com", :informalname=>"Tech High Robotics"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=677", :city=>"Columbus", :teamnumber=>"677", :country=>"USA", :state=>"OH", :rookieyear=>"2001", :robotname=>"", :name=>"Ohio State University/American Electric Power/Roush Honda & Columbus School for Girls", :website=>"http://www.columbusschoolforgirls.org/about_csg/activities_robotics.aspx", :informalname=>"Murphy's Outlaws"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=685", :city=>"Coconut Creek, FL", :teamnumber=>"685", :country=>"", :state=>"", :rookieyear=>"2001", :robotname=>"", :name=>"First Service Realty Int'l & Atlantic Technical Center Magnet High School", :website=>"", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=686", :city=>"Frederick", :teamnumber=>"686", :country=>"USA", :state=>"MD", :rookieyear=>"2001", :robotname=>"", :name=>"NASA Goddard Space Flight Center/Samuel/The Barrie Family/New London Precision Instruments, Inc./Rinker Materials/The Kinna Family & Linganore High School", :website=>"http://www.team686.org/", :informalname=>"Bovine Intervention"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=687", :city=>"Carson", :teamnumber=>"687", :country=>"USA", :state=>"CA", :rookieyear=>"2001", :robotname=>"Metal Seduction", :name=>"Boeing/Northrop-Grumman/Raytheon/CAMS PTSO/Rhodia/Shell & California Academy of Mathematics and Science", :website=>"http://www.camsrobotics.org", :informalname=>"The Nerd Herd"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=691", :city=>"Stevenson Ranch", :teamnumber=>"691", :country=>"USA", :state=>"CA", :rookieyear=>"2001", :robotname=>"", :name=>"NASA-JPL / St Jude Medical / Woodward HRT / Bayless Engineering / Microfabrica Inc & West Ranch High School & Hart High School & Acadamy of the Canyons", :website=>"http://www.team691.org", :informalname=>"HartBurn"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=692", :city=>"Sacramento", :teamnumber=>"692", :country=>"USA", :state=>"CA", :rookieyear=>"2001", :robotname=>"B2", :name=>"The Boeing Company / ACE Clearwater Enterprises / Aerojet. / Society of Women Engineers, Sacramento Valley Section / Mariani's Inn & Restaurant / Folsom Anesthesia Medical Group / Truck Driving Academy, Inc. / DEFIND Training Group, Inc. / The Report Card / Optimist Club of Sacramento / The Lesyna Families / The Stewart Family / Expon Exhibits / GreenHome Factory / Dos Coyotes & St Francis High School", :website=>"http://www.sfrobotics.com", :informalname=>"The Fembots"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=694", :city=>"New York", :teamnumber=>"694", :country=>"USA", :state=>"NY", :rookieyear=>"2001", :robotname=>"MICHAEL 1", :name=>"Stuyvesant High School Alumni Association/Credit Suisse/D. E. Shaw & Co./Verizon/Time, Inc./The Wallace Foundation/Con Edison/Cox & Company, Inc/Yvette & Larry Gralla & Stuyvesant High School", :website=>"http://www.stuypulse.com", :informalname=>"StuyPulse"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=695", :city=>"Beachwood", :teamnumber=>"695", :country=>"USA", :state=>"OH", :rookieyear=>"2001", :robotname=>"", :name=>"PTC/Parker/A-1 Manufacturing/The Metal Store/Envision Radio Corporation/SMART Consortium & Beachwood High School", :website=>"", :informalname=>"The Bison"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=696", :city=>"La Crescenta", :teamnumber=>"696", :country=>"USA", :state=>"CA", :rookieyear=>"2001", :robotname=>"", :name=>"JPL / Glendale Community College / TruCut Machine & Clark Magnet High School", :website=>"http://www.team696.com", :informalname=>"Circuit Breakers"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=697", :city=>"Los Angeles", :teamnumber=>"697", :country=>"", :state=>" CA", :rookieyear=>"2001", :robotname=>"", :name=>"", :website=>"http://www.pandarobotics.net", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=698", :city=>"Chandler", :teamnumber=>"698", :country=>"USA", :state=>"AZ", :rookieyear=>"2001", :robotname=>"Leonard the Leviathan", :name=>"Microchip Technology Inc./Hewlett Packard Corporation/Industrial Metal Supply/Port Plastics & Basha High School & Hamilton High School & Space Grant Robotics-ASU", :website=>"http://hamiltonrobotics.org", :informalname=>"HHS Airship Pirates"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=701", :city=>"Fairfield", :teamnumber=>"701", :country=>"USA", :state=>"CA", :rookieyear=>"2001", :robotname=>"Thor", :name=>"Travis USD/Solano County Office of Education/PGP Corporation/COGCO, Wireline Inc/Fairfield-Suisun Rotary/Solano Community Foundation/Valero Refining Companies/Tesoro Refining Companies/Dale and Shirley Brown/Pedron's Storage Co./Michael & Margaret Salvador & Vanden High School", :website=>"http://www.vandenrobotics.com", :informalname=>"RoboVikes"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=702", :city=>"Culver City", :teamnumber=>"702", :country=>"USA", :state=>"CA", :rookieyear=>"2001", :robotname=>"", :name=>"Raytheon / JCPenney Afterschool Fund / The Fraser Family / Tech Empower / Pom Wonderful / Coast 2 Coast Cables / Fold-A-Goal / M&K Metal Co. / Culver City Industrial Hardware / Jane Ryan / Caroline Mayo / Mary C. Davis & Culver CIty High School", :website=>"http://www.planet702.org", :informalname=>"Bagel Bytes"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=703", :city=>"Saginaw", :teamnumber=>"703", :country=>"USA", :state=>"MI", :rookieyear=>"2001", :robotname=>"The Phoenix", :name=>"Delphi & Saginaw Career Complex", :website=>"http://www.team703.com", :informalname=>"Phoenix"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=704", :city=>"Grand Prairie", :teamnumber=>"704", :country=>"USA", :state=>"TX", :rookieyear=>"2001", :robotname=>"Shake-Rattle-and-Score", :name=>"Lockheed Martin Missiles and Fire Control/ITT Technical Institute-Arlington, Texas/Pratt & Whitney Eagle SVC/General Motors-Arlington Assembly/Thrivent Financial for Lutherans/LR Cannon Enterprises/Kirk England-State Farm Insurance/G-S Machine Shop & South Grand Prairie High School", :website=>"http://www.sgprobotics.org", :informalname=>"Warriors"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=706", :city=>"Hartland", :teamnumber=>"706", :country=>"USA", :state=>"WI", :rookieyear=>"2001", :robotname=>"", :name=>"Price Engineering/GE Volunteers/MSOE & Arrowhead High School", :website=>"http://arrowheadrobotics.org", :informalname=>"CYBERHAWKS"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=708", :city=>"Horsham", :teamnumber=>"708", :country=>"USA", :state=>"PA", :rookieyear=>"2001", :robotname=>"", :name=>"Motorola/Centocor Ortho Biotech/Hatboro-Horsham Education Foundation/Upper Moreland Education Foundation & Hatboro-Horsham High School & Upper Moreland High School", :website=>"http://www.team708.org", :informalname=>"Hardwired Fusion"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=709", :city=>"Rosemont", :teamnumber=>"709", :country=>"USA", :state=>"PA", :rookieyear=>"2001", :robotname=>"", :name=>"The Agnes Irwin School", :website=>"http://robotics.agnesirwin.org", :informalname=>"Femme Tech Fatale"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=710", :city=>"Fort Lauderdale", :teamnumber=>"710", :country=>"", :state=>" FL", :rookieyear=>"2001", :robotname=>"", :name=>"Pine Crest School", :website=>"http://www.ftl.pinecrest.edu/robotics", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=711", :city=>"Brooklyn", :teamnumber=>"711", :country=>"", :state=>" NY", :rookieyear=>"2001", :robotname=>"Robeson Robotic Force", :name=>"Bezos Family/Citigroup & Paul Robeson high School", :website=>"", :informalname=>"Brooklyn"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=712", :city=>"Brooklyn, NY", :teamnumber=>"712", :country=>"", :state=>"", :rookieyear=>"2001", :robotname=>"Robeson Robotic Force", :name=>"Bezos Family/Citigroup & Paul Robeson high School", :website=>"", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=713", :city=>"New York City, NY", :teamnumber=>"713", :country=>"", :state=>"", :rookieyear=>"2001", :robotname=>"", :name=>"Con Edison/A&M Industrial Supply Company/City College of New York (CUNY) & Rice High School", :website=>"http://www.ricehighschool.com", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=714", :city=>"Newark", :teamnumber=>"714", :country=>"USA", :state=>"NJ", :rookieyear=>"2001", :robotname=>"prowler", :name=>"PNC Bank/Port Authority of New York New Jersey & Technology High School", :website=>"http://www.thspanthers-714.org", :informalname=>"panthera"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=716", :city=>"Falls Village", :teamnumber=>"716", :country=>"USA", :state=>"CT", :rookieyear=>"2001", :robotname=>"Thingamabob", :name=>"BD/C. A. Lindell/21st Century Fund & Housatonic Valley Regional High School", :website=>"http://www.hvrhs.org", :informalname=>"Who'sCTEKS"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=737", :city=>"Falls Village, CT", :teamnumber=>"737", :country=>"", :state=>"", :rookieyear=>"2001", :robotname=>"Whatcha-Ma-Call-IT", :name=>"BD/C. A. Lindell/Salisbury Bank and Trust/21st Century Fund & Housatonic Valley Regional High School", :website=>"http://www.hvrhs.org", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=743", :city=>"Bronx", :teamnumber=>"743", :country=>"USA", :state=>"NY", :rookieyear=>"2002", :robotname=>"", :name=>"Bloomberg & Evander Childs Campus & High School of Computers and Technology", :website=>"http://www.hscomputech.com", :informalname=>"Technobots"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=744", :city=>"Ft. Lauderdale", :teamnumber=>"744", :country=>"USA", :state=>"FL", :rookieyear=>"2002", :robotname=>"Shark Attack", :name=>"Apex Machine Co. & Westminster Academy", :website=>"http://www.Sharkattack744.com", :informalname=>"Shark Attack"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=745", :city=>"sld", :teamnumber=>"745", :country=>"", :state=>"KY", :rookieyear=>"2002", :robotname=>"", :name=>"Test Team & Test Team", :website=>"", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=746", :city=>"Lumberton", :teamnumber=>"746", :country=>"", :state=>"TXUSA", :rookieyear=>"0", :robotname=>"", :name=>"Lumberton High School Robotics Club", :website=>"", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=750", :city=>"Picayune, MS", :teamnumber=>"750", :country=>"", :state=>"", :rookieyear=>"2002", :robotname=>"", :name=>"NASA Stennis Space Center/Valspar/Exxon Oil Corp./Datastar, Inc./Picayune Industrial Supply/Q & G Supply/USM Physics Dept & Picayune Career & Technology Center", :website=>"http://www.datastar.net/users/picayunerobotics/", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=751", :city=>"Portola Valley", :teamnumber=>"751", :country=>"USA", :state=>"CA", :rookieyear=>"2002", :robotname=>"", :name=>"Woodside Priory School", :website=>"", :informalname=>"b2r"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=752", :city=>"Newark", :teamnumber=>"752", :country=>"USA", :state=>"NJ", :rookieyear=>"2002", :robotname=>"", :name=>"The Port Authority of New York & New Jersey/NJIT & Science Park High School & Newark Public Schools", :website=>"http://www.shsrobotix.com/website/home.php", :informalname=>"The League"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=753", :city=>"Bend", :teamnumber=>"753", :country=>"USA", :state=>"OR", :rookieyear=>"2002", :robotname=>"", :name=>"Bend Research/Microsemi & Mountain View High School", :website=>"http://www.team753.com/", :informalname=>"High Desert Droids"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=754", :city=>"Marinette", :teamnumber=>"754", :country=>"", :state=>" WI", :rookieyear=>"2002", :robotname=>"", :name=>"NWTC/MMC/M&M Foundation/Enstrom Helicopter & Marinette HS & Menominee HS & Peshtigo HS", :website=>"http://frostbyte754.com", :informalname=>"FROSTBYTE"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=758", :city=>"Blenheim", :teamnumber=>"758", :country=>"", :state=>" ON", :rookieyear=>"2002", :robotname=>"", :name=>"ArvinMeritor/Meritor Suspension Systems & Blenheim District High School, Chatham Kent Secondary School, John McGregor Secondary School, & Ursuline College", :website=>"http://www.skyrobotics.ca", :informalname=>"South-Kent Youth Robotics"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=759", :city=>"Cambridge", :teamnumber=>"759", :country=>"Great Britain", :state=>"UK", :rookieyear=>"2002", :robotname=>"mothzilla", :name=>"ARM/Cambridge Angels/metapurple Ltd./Microsoft & Hills Road Sixth Form College", :website=>"http://www.systemetric.org/", :informalname=>"Systemetric"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=762", :city=>"Altamonte Springs, FL", :teamnumber=>"762", :country=>"", :state=>"", :rookieyear=>"2002", :robotname=>"", :name=>"United Space Alliance/Metal Essence, Inc. & Lake Brantley", :website=>"http://www.lbhsrobotics.com", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=764", :city=>"Sturgis, SD", :teamnumber=>"764", :country=>"", :state=>"", :rookieyear=>"2002", :robotname=>"", :name=>"South Dakota Space Grant Consortium & Sturgis Brown High School", :website=>"http://meade.k12.sd.us/robotics/home.html", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=765", :city=>"Rapid City, SD", :teamnumber=>"765", :country=>"", :state=>"", :rookieyear=>"2002", :robotname=>"", :name=>"", :website=>"", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=766", :city=>"Atherton", :teamnumber=>"766", :country=>"USA", :state=>"CA", :rookieyear=>"2002", :robotname=>"Ma Bear", :name=>"Menlo-Atherton High School", :website=>"http://www.marobotics.org", :informalname=>"M-A Bears"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=768", :city=>"Baltimore", :teamnumber=>"768", :country=>"USA", :state=>"MD", :rookieyear=>"2002", :robotname=>"Lunar Warrior aka Tang", :name=>"NASA Goddard Space Flight Center/Baltimore Area Alliance (BAA)/Fred Needel, Inc. & Brauckmann Family & Clash Family & Woodlawn High School", :website=>"http://www.team768.org", :informalname=>"TechnoWarriors"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=769", :city=>"Virginia Beach", :teamnumber=>"769", :country=>"", :state=>" VA", :rookieyear=>"2002", :robotname=>"", :name=>"", :website=>"http://www.landstownhs.vbschools.com/robotics2/index.html", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=770", :city=>"Rapid City, SD", :teamnumber=>"770", :country=>"", :state=>"", :rookieyear=>"2002", :robotname=>"", :name=>"NASA/South Dakota Space Grant Consortium", :website=>"", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=771", :city=>"Oakville", :teamnumber=>"771", :country=>"Canada", :state=>"ON", :rookieyear=>"2002", :robotname=>"Mildread VIII", :name=>"St. Mildred's Lightbourn Parent Association/Ford Motor Co. of Canada, Limited & St. Mildred's-Lightbourn School", :website=>"http://www.smls.on.ca/robotics/", :informalname=>"SWAT"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=772", :city=>"LaSalle", :teamnumber=>"772", :country=>"Canada", :state=>"ON", :rookieyear=>"2002", :robotname=>"High Roller", :name=>"General Motors of Canada/Centerline/Dr. Anil Dhar Medicine Professional Corp./Amherst Quarries & Sandwich Secondary School", :website=>"http://www.sabrerobotics.com", :informalname=>"Sabre Bytes"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=773", :city=>"Kingsville", :teamnumber=>"773", :country=>"", :state=>" ON", :rookieyear=>"2002", :robotname=>"", :name=>"Siemens VDO/Kingsville Greenhouse Growers & Kingsville District High School", :website=>"http://www.kingsvillekukes.com", :informalname=>"Kingsville"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=776", :city=>"Tecumseh", :teamnumber=>"776", :country=>"", :state=>" ON", :rookieyear=>"2002", :robotname=>"", :name=>"Anchor Lamina Inc./Geo. T White Ltd./University of Windsor/St. Anne Parents Club & St Anne HS", :website=>"http://www.mnsi.net/~stanne", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=777", :city=>"WINDSOR, ON", :teamnumber=>"777", :country=>"", :state=>"", :rookieyear=>"0", :robotname=>"", :name=>"Trigasskiss & LAJEUNESSE", :website=>"http://www.csdecso.on.ca/Bienvenue/ecoles/windsor/ES_Lajeunesse/accueil.html", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=780", :city=>"Bayamon, PR", :teamnumber=>"780", :country=>"", :state=>"", :rookieyear=>"2002", :robotname=>"", :name=>"NASA Dryden Flight Research Center", :website=>"", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=781", :city=>"Kincardine", :teamnumber=>"781", :country=>"Canada", :state=>"ON", :rookieyear=>"2002", :robotname=>"", :name=>"Bruce Power/Power Workers' Union & Kincardine District Secondary School", :website=>"http://www.team781.com", :informalname=>"Kinetic Knights"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=782", :city=>"Hartford, CT", :teamnumber=>"782", :country=>"", :state=>"", :rookieyear=>"2002", :robotname=>"", :name=>"PKT Development Inc", :website=>"http://first.watkinson.org", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=783", :city=>"Toronto", :teamnumber=>"783", :country=>"", :state=>" ON", :rookieyear=>"2002", :robotname=>"", :name=>"", :website=>"http://www.mobotics.ca", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=800", :city=>"Redmond, OR", :teamnumber=>"800", :country=>"", :state=>"", :rookieyear=>"2002", :robotname=>"", :name=>"Oregon Space Grant Consortium & Redmond High School", :website=>"", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=801", :city=>"Merritt Island", :teamnumber=>"801", :country=>"USA", :state=>"FL", :rookieyear=>"2002", :robotname=>"Mustang Sally", :name=>"Boeing/Lockheed Martin/United Space Alliance/GovConnection/United Launch Alliance/IBM/Craig Technologies/Bradley Investments, LLC/SpaceTEC/Brevard Public Schools & Merritt Island High School & Edgewood Jr Sr High School & Jefferson Middle School & Merritt Island Christian School & Home School", :website=>"http://www.team801.org", :informalname=>"Horsepower"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=803", :city=>"Berkeley County", :teamnumber=>"803", :country=>"", :state=>" SC", :rookieyear=>"2002", :robotname=>"", :name=>"Goose Creek High School & Hanahan High School", :website=>"", :informalname=>"Berkeley County"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=804", :city=>"Rock Hill", :teamnumber=>"804", :country=>"USA", :state=>"SC", :rookieyear=>"2002", :robotname=>"FeCoNiCuZn -- "Cuzn"", :name=>"Williams and Fudge/Chick-fil-A Dave Lyle/Duke Energy & Applied Technology Center & Rock Hill District 3 High Schools", :website=>"http://www.rock-hill.k12.sc.us/Robotics/", :informalname=>"MetalMorphosis/Mad Scientists"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=806", :city=>"Brooklyn", :teamnumber=>"806", :country=>"USA", :state=>"NY", :rookieyear=>"2002", :robotname=>"The Anvil", :name=>"Xaverian High School", :website=>"http://www.xhsrobotics.net", :informalname=>"The Brooklyn Blacksmiths"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=807", :city=>"Huntsville", :teamnumber=>"807", :country=>"", :state=>" AL", :rookieyear=>"2002", :robotname=>"", :name=>"NASA/Digital Fusion, Inc./CFD Research Corporation & New Century Technology High School & Columbia High School", :website=>"http://www.first-team807.org", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=808", :city=>"Alliance", :teamnumber=>"808", :country=>"", :state=>" OH", :rookieyear=>"2002", :robotname=>"", :name=>"Hill's Heating and Cooling & Alliance High School", :website=>"http://www.aviators.stark.k12.oh.us/ahs/Robotics/Home.htm", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=809", :city=>"Manchester", :teamnumber=>"809", :country=>"USA", :state=>"CT", :rookieyear=>"2002", :robotname=>"Merlin", :name=>"Stanley Works/Pratt & Whitney/Cheney Tech PTO & Cheney Tech", :website=>"http://www.team809.org", :informalname=>"The TechnoWizards"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=810", :city=>"Smithtown", :teamnumber=>"810", :country=>"USA", :state=>"NY", :rookieyear=>"2002", :robotname=>"Minotaur", :name=>"BAE Systems & Smithtown Schools", :website=>"http://www.smithtownrobotics.com", :informalname=>"The Mechanical Bulls"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=811", :city=>"Nashua", :teamnumber=>"811", :country=>"USA", :state=>"NH", :rookieyear=>"2002", :robotname=>"The Noisy Cricket", :name=>"BAE SYSTEMS/Raytheon IDS/L3 Communications/DRS Technologies & Bishop Guertin High School", :website=>"http://www.team811.com", :informalname=>"Cardinals"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=812", :city=>"San Diego", :teamnumber=>"812", :country=>"USA", :state=>"CA", :rookieyear=>"2002", :robotname=>"Plan Z", :name=>"The University of California at San Diego/BAE Systems/Calit2/Fish & Richardson/General Motors/Hitec RCD/Irwin and Joan Jacobs/Jones Family Foundation/The UCSD Machine Perception Laboratory/Qualcomm/The San Diego County Fair & The Preuss School at UCSD", :website=>"http://www.midnightmechanics.org", :informalname=>"The Midnight Mechanics"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=814", :city=>"Napa", :teamnumber=>"814", :country=>"USA", :state=>"CA", :rookieyear=>"2002", :robotname=>"", :name=>"TBL Capital & RETURN OF 814", :website=>"", :informalname=>"Bynum's Bots"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=815", :city=>"Allen Park", :teamnumber=>"815", :country=>"USA", :state=>"MI", :rookieyear=>"2002", :robotname=>"TOBOR", :name=>"Ford Motor Company/Dan's Robotic Team/e-Merging Market Technologies LLC/ITT Technical Institute/Copper and Brass Sales/Polygal, Inc/American Axle & Allen Park High School & St Frances Cabrini High School", :website=>"http://www.team815advancedpower.org", :informalname=>"Advanced Power"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=816", :city=>"Westampton", :teamnumber=>"816", :country=>"USA", :state=>"NJ", :rookieyear=>"2002", :robotname=>"Anomaly", :name=>"Burlington County Institute of Technology Westampton", :website=>"http://www.team816.com/", :informalname=>"Anomaly"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=818", :city=>"Warren", :teamnumber=>"818", :country=>"USA", :state=>"MI", :rookieyear=>"2002", :robotname=>"", :name=>"General Motors General Assembly Engineering & Warren Consolidated Schools", :website=>"http://www.usfirst818.org", :informalname=>"Steel Armadillos"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=820", :city=>"Toronto", :teamnumber=>"820", :country=>"", :state=>" ON", :rookieyear=>"2002", :robotname=>"Delta Bot", :name=>"iisnet networks/PEO-North Toronto Chapter/Ready Honda & North Toronto Collegiate Institute & Toronto District School Board", :website=>"http://DeltaTech.ca", :informalname=>"Toronto"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=824", :city=>"Seattle", :teamnumber=>"824", :country=>"", :state=>" WA", :rookieyear=>"2002", :robotname=>"", :name=>"", :website=>"http://www.swatrobotics.org/", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=825", :city=>"Dublin, VA", :teamnumber=>"825", :country=>"", :state=>"", :rookieyear=>"2002", :robotname=>"", :name=>"Verizon Virginia Inc./Radford Univ.", :website=>"http://www.team825.com/", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=827", :city=>"Fremont", :teamnumber=>"827", :country=>"", :state=>" CA", :rookieyear=>"2002", :robotname=>"", :name=>"California School for the Deaf", :website=>"http://www.csdf.k12.ca.us/Robotics05", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=829", :city=>"Indianapolis", :teamnumber=>"829", :country=>"USA", :state=>"IN", :rookieyear=>"2002", :robotname=>"Wazoo II", :name=>"ProportionAir Corporation/Rolls-Royce Corporation/Indiana Department of Workforce Development & Walker Career Center", :website=>"http://www.warrenrobotics.org", :informalname=>"Digital Goats"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=830", :city=>"Ann Arbor", :teamnumber=>"830", :country=>"USA", :state=>"MI", :rookieyear=>"2002", :robotname=>"", :name=>"Washtenaw Commuity College/Toyota Technical Center/University of Michigan/UMentorFIRST & Ann Arbor Huron High School", :website=>"", :informalname=>"Rat Pack"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=831", :city=>"Mililani, HI", :teamnumber=>"831", :country=>"", :state=>"", :rookieyear=>"2002", :robotname=>"", :name=>"Castle & Cooke/Leeward Community College", :website=>"http://www.mililanirobotics.org", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=832", :city=>"Roswell", :teamnumber=>"832", :country=>"USA", :state=>"GA", :rookieyear=>"2002", :robotname=>"Taz-bot", :name=>"GE Volunteers / Women in Technology- Atlanta GA / Johnson Controls Foundation / Capital Fabrication / ITT Technical Institute / Applied Systems Intelligence & Roswell High School", :website=>"http://team832.wordpress.com/", :informalname=>"Oscar"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=833", :city=>"Kamuela", :teamnumber=>"833", :country=>"", :state=>" HI", :rookieyear=>"2002", :robotname=>"", :name=>"Hawai'i Preparatory Academy", :website=>"http://www.hpa.edu", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=834", :city=>"Center Valley", :teamnumber=>"834", :country=>"USA", :state=>"PA", :rookieyear=>"2002", :robotname=>"Kalmar", :name=>"Lutron Electronics, Inc/Quakertown National Bank/Olympus America Inc./Mack Trucks, Inc. & Southern Lehigh School District", :website=>"http://team834.org", :informalname=>"SparTechs"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=835", :city=>"Beverly Hills", :teamnumber=>"835", :country=>"USA", :state=>"MI", :rookieyear=>"2002", :robotname=>"", :name=>"DENSO & Detroit Country Day School", :website=>"http://bluegold.dcds.edu/Upper%20School/US%20Club%20pages/Robotics.htm", :informalname=>"The Sting"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=836", :city=>"Leonardtown", :teamnumber=>"836", :country=>"USA", :state=>"MD", :rookieyear=>"2002", :robotname=>""Bolts"", :name=>"The RoboBees & BAE Systems/The Patuxent Partnership/Booz Allen Hamilton & Dr. James A. Forrest Career & Technology Center High School", :website=>"http://www.smcps.org/schools/programs/techcenter/robobeeswebsite.htm", :informalname=>"RoboBees"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=837", :city=>"Oxford", :teamnumber=>"837", :country=>"", :state=>" NC", :rookieyear=>"2002", :robotname=>"Willy", :name=>"Plastic Ingenuity & Granville County Schools", :website=>"http://users.gloryroad.net/~webbinators/", :informalname=>"Oxford"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=839", :city=>"Agawam", :teamnumber=>"839", :country=>"USA", :state=>"MA", :rookieyear=>"2002", :robotname=>"Rosie 8.0", :name=>"G & L Tool/Berkshire Power/Hamilton Sundstrand/Hartford Steam Boiler Inspection & Insurance Company/PTC/Agawam Robotics Education Association Inc. & Agawam High School", :website=>"http://www.agawampublicschools.org", :informalname=>"Rosie Robotics"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=840", :city=>"San Mateo", :teamnumber=>"840", :country=>"USA", :state=>"CA", :rookieyear=>"2002", :robotname=>"HAL4", :name=>"CIM 3 Engineering/SRI International/Alloy Cutting/Odwalla Inc/Elemental LED & Aragon High School & San Mateo Union High School District", :website=>"http://www.aragonrobotics.org", :informalname=>"ART 840"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=841", :city=>"Richmond", :teamnumber=>"841", :country=>"USA", :state=>"CA", :rookieyear=>"2002", :robotname=>"", :name=>"Chevron & Richmond High School", :website=>"http://www.wccusd.k12.ca.us/rhs/robotics/", :informalname=>"The BioMechs"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=842", :city=>"Phoenix", :teamnumber=>"842", :country=>"USA", :state=>"AZ", :rookieyear=>"2002", :robotname=>"Carmen", :name=>"Boeing / Sims Metal Management / General Dynamics / Science Foundation Arizona / Creative Pultrusions / !NVENTIVITY / SEAD architecture / Fast Signs / Southwest Fasteners & Carl Hayden High School", :website=>"http://www.phxhs.k12.az.us/education/club/club.php?sectionid=3670", :informalname=>"Falcon Robotics"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=843", :city=>"Oakville", :teamnumber=>"843", :country=>"Canada", :state=>"ON", :rookieyear=>"2002", :robotname=>"", :name=>"Turning Point CNC Inc. / DCM Erectors Inc. / Double 'D' Drafting / Greg's Cinema Custom Entertainment / Sheridan College / BMP Metals / Enable Training and Consulting / KTS Tooling / Exfo & White Oaks Secondary School & Halton District School Board", :website=>"http://wos.hdsb.ca/robotics2004/index.html", :informalname=>"Wildcats"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=845", :city=>"Pendleton", :teamnumber=>"845", :country=>"", :state=>" SC", :rookieyear=>"2002", :robotname=>"", :name=>"Accu Tech & Pendleton High School", :website=>"http://www.anderson4.k12.sc.us/schools/phs/robotics/index.htm", :informalname=>"Cutting Edge"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=846", :city=>"San Jose", :teamnumber=>"846", :country=>"USA", :state=>"CA", :rookieyear=>"2002", :robotname=>"Moonkey", :name=>"Google/LAM Research/NASA/Cardiomind, Inc/Symantec/DP Products/Sony Electronics/Western Digital & Lynbrook High School", :website=>"http://www.lynbrookrobotics.com/", :informalname=>"The Funky Monkeys"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=847", :city=>"Philomath", :teamnumber=>"847", :country=>"USA", :state=>"OR", :rookieyear=>"2002", :robotname=>"PHRED VIII", :name=>"NASA / IBEW Local 280 / Corvallis Clinic / Hughes Farm & Philomath High School", :website=>"http://www.team847.com", :informalname=>"PHRED"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=848", :city=>"San Pedro", :teamnumber=>"848", :country=>"USA", :state=>"CA", :rookieyear=>"2002", :robotname=>"Bamboo 2", :name=>"Boeing & Rolling Hills Preparatory School", :website=>"http://www.huskyrobotics.org", :informalname=>"Bambots"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=849", :city=>"Unionville", :teamnumber=>"849", :country=>"", :state=>" ON", :rookieyear=>"2002", :robotname=>"", :name=>"PowerStream & Unionville High School", :website=>"http://www.uhsrobotics.ca", :informalname=>"Unionville"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=851", :city=>"Torrance", :teamnumber=>"851", :country=>"", :state=>" CA", :rookieyear=>"2002", :robotname=>"", :name=>"", :website=>"http://www.JTAcademy.org", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=852", :city=>"Danville", :teamnumber=>"852", :country=>"USA", :state=>"CA", :rookieyear=>"2002", :robotname=>"Chet VIII", :name=>"The Athenian School", :website=>"http://www.athenianrobotics.org", :informalname=>"The Athenian Robotics Collective"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=854", :city=>"Toronto", :teamnumber=>"854", :country=>"Canada", :state=>"ON", :rookieyear=>"2002", :robotname=>"", :name=>"TDSB & Martingrove C. I. ", :website=>"http://team854.ca", :informalname=>"The Iron Bears"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=857", :city=>"Houghton", :teamnumber=>"857", :country=>"USA", :state=>"MI", :rookieyear=>"2002", :robotname=>"Francios", :name=>"BAE SYSTEMS / The Chrysler Foundation / General Motors / Michigan Technological University & Houghton High School", :website=>"http://www.team857.com", :informalname=>"Superior Roboworks"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=858", :city=>"Wyoming", :teamnumber=>"858", :country=>"USA", :state=>"MI", :rookieyear=>"2002", :robotname=>"DD", :name=>"Delphi Corp. & Wyoming Public Schools", :website=>"http://www.wyoming.k12.mi.us/015/RoboticsWeb-Page/ROBOTICS%20WEBSITE/home%20page", :informalname=>"Delphi Demons"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=859", :city=>"Morgantown", :teamnumber=>"859", :country=>"", :state=>" WV", :rookieyear=>"2002", :robotname=>"", :name=>"West Virginia University & Monongalia County Board of Education & Morgantown High School", :website=>"http://mhsrobotics.org", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=861", :city=>"Los Angeles, CA", :teamnumber=>"861", :country=>"", :state=>"", :rookieyear=>"2002", :robotname=>"", :name=>"USC", :website=>"http://www.venicerobotics.tk", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=862", :city=>"Canton", :teamnumber=>"862", :country=>"USA", :state=>"MI", :rookieyear=>"2002", :robotname=>"Spark Plug", :name=>"Robert Bosch LLC/ITT Technical Institute & Plymouth-Canton Educational Park", :website=>"http://www.lightningrobotics.com", :informalname=>"Lightning Robotics"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=863", :city=>"Toronto, ON", :teamnumber=>"863", :country=>"", :state=>"", :rookieyear=>"2002", :robotname=>"", :name=>"St. Clement's School & St. Clement's School Foundation", :website=>"http://www.scs.on.ca/Robotics", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=865", :city=>"Toronto", :teamnumber=>"865", :country=>"Canada", :state=>"ON", :rookieyear=>"2002", :robotname=>"", :name=>"Toronto District School Board & Western Technical-Commercial School", :website=>"http://warp7.ca", :informalname=>"Warp7"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=866", :city=>"Caguas, PR", :teamnumber=>"866", :country=>"", :state=>"", :rookieyear=>"2002", :robotname=>"", :name=>"A&M//Nypro Puerto Rico & SmartTeens", :website=>"http://www.turabohurricanes.com", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=867", :city=>"Arcadia", :teamnumber=>"867", :country=>"USA", :state=>"CA", :rookieyear=>"2002", :robotname=>"Trinity VIII", :name=>"NASA/Los Angeles County ROP & Arcadia Unified School District", :website=>"", :informalname=>"Absolute Value"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=868", :city=>"Carmel", :teamnumber=>"868", :country=>"USA", :state=>"IN", :rookieyear=>"2002", :robotname=>"", :name=>"Indiana Department of Workforce Development/Rolls Royce & Carmel High School", :website=>"http://techhounds.com", :informalname=>"TechHOUNDS"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=869", :city=>"Middlesex", :teamnumber=>"869", :country=>"USA", :state=>"NJ", :rookieyear=>"2002", :robotname=>"MAC", :name=>"Cordis Corporation (J&J) & Middlesex High School", :website=>"http://www.powercord869.com", :informalname=>"Power Cord 869"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=870", :city=>"Southold", :teamnumber=>"870", :country=>"USA", :state=>"NY", :rookieyear=>"2002", :robotname=>"", :name=>"Miller Environmental/Westhampton Glass and Metal/Lewis Marine Supply of Greenport/Westhampton True Value Hardware/Hart's True Value Hardware/North Fork Sanitation/Silicon Valley/Southold PBA/Conway/Port of Egypt Marine/Southold Agway/Founder's Tavern/Wayside Deli & Southold Junior Senior High School", :website=>"http://www.rice870.org", :informalname=>"TEAM R. I. C. E."}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=871", :city=>"West Islip", :teamnumber=>"871", :country=>"USA", :state=>"NY", :rookieyear=>"2002", :robotname=>"Ballistic Pendulum", :name=>"West Islip Robotics Booster Club, Inc. & West Islip High School", :website=>"http://www.westisliprobotics.com/", :informalname=>"Robotechs"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=872", :city=>"Columbus", :teamnumber=>"872", :country=>"USA", :state=>"OH", :rookieyear=>"2002", :robotname=>"", :name=>"columbus state community college & marion franklin boosters", :website=>"http://www.techno-devils.50megs.com", :informalname=>"Techno-Devils"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=874", :city=>"Alexander", :teamnumber=>"874", :country=>"", :state=>" ND", :rookieyear=>"2002", :robotname=>"", :name=>"Alexander Public School", :website=>"http://www.alexander.k12.nd.us", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=875", :city=>"Hatton, ND", :teamnumber=>"875", :country=>"", :state=>"", :rookieyear=>"2002", :robotname=>"", :name=>"NASA Langley Research Center/North Dakota Space Grant Consortium & Hatton Public School", :website=>"http://www.hatton.k12.nd.us/robotpage.htm", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=876", :city=>"Northwood", :teamnumber=>"876", :country=>"USA", :state=>"ND", :rookieyear=>"2002", :robotname=>"Dark Knight", :name=>"ND Space Grant Consortium/Citizen's State Bank of Finley/American Federal/Equity Elevator/Farmers Union Insurance/Swingen Construction/Aneta Whitetail Ashley Lions/Dr. Mary Aaland/Hatton Mens Club/Lloyd Farms/Meland Lumber/Msgt. Gary Kimball/Ed and Sue Lloyd & Northwood High School & Hatton High School", :website=>"http://www.northwood.k12.nd.us/Robotics/Robotics.htm", :informalname=>"Thunder Robotics"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=877", :city=>"Cando", :teamnumber=>"877", :country=>"USA", :state=>"ND", :rookieyear=>"2002", :robotname=>"Kryptobot VIII", :name=>"UND Space Grant Consortium & North Star Public High School", :website=>"http://www.cando.k12.nd.us/06_07_groups/robotics08/robotics08b.htm", :informalname=>"North Star"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=878", :city=>"Rugby", :teamnumber=>"878", :country=>"USA", :state=>"ND", :rookieyear=>"2002", :robotname=>"", :name=>"North Dakota Space Grant Consortium / Rugby Welding & Machine / Rugby Truck Bodies & Equipment / Dakota Prairie Supply / Rugby Eagles Aerie #3834 & Rugby High School", :website=>"http://www.hs.rugby.k12.nd.us/team878/index.htm", :informalname=>"Metal Gear"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=879", :city=>"New Town, ND", :teamnumber=>"879", :country=>"", :state=>"", :rookieyear=>"2002", :robotname=>"", :name=>"NASA/North Dakota Space Grant Consortium/Cenex of New Town/Northrop Grumman - New Town Site/DJ Consulting", :website=>"", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=880", :city=>"Fairmount", :teamnumber=>"880", :country=>"", :state=>" ND", :rookieyear=>"2002", :robotname=>"", :name=>"", :website=>"http://www.fairmount.k12.nd.us", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=883", :city=>"Cleveland", :teamnumber=>"883", :country=>"", :state=>" OH", :rookieyear=>"2002", :robotname=>"", :name=>"Cleveland Central Catholic High School", :website=>"http://centralcatholichs.org", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=884", :city=>"Malverne", :teamnumber=>"884", :country=>"USA", :state=>"NY", :rookieyear=>"2002", :robotname=>"", :name=>"Malverne High School", :website=>"http://www.malverne.k12.ny.us/mhs/Robotics/", :informalname=>"Quarks"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=885", :city=>"Randolph", :teamnumber=>"885", :country=>"USA", :state=>"VT", :rookieyear=>"2002", :robotname=>"", :name=>"Vermont Technical College/Norwich University David Crawford School of Engineering & Randolph Union High School", :website=>"http://www.thegreenteam885.org", :informalname=>"GREEN TEAM"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=886", :city=>"North York", :teamnumber=>"886", :country=>"Canada", :state=>"ON", :rookieyear=>"2002", :robotname=>"", :name=>"TDSB & Westview Centennial SS", :website=>"http://westview.tdsb.on.ca", :informalname=>"Wildcats"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=888", :city=>"Glenelg", :teamnumber=>"888", :country=>"USA", :state=>"MD", :rookieyear=>"2002", :robotname=>"", :name=>"NASA Goddard/W.R.Grace/Howard County Public Schools/Booz Allen Hamilton/Edge Space Systems & Glenelg High School", :website=>"http://www.usfirst888.com", :informalname=>"Robotiators"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=889", :city=>"West Islip, NY", :teamnumber=>"889", :country=>"", :state=>"", :rookieyear=>"2002", :robotname=>"", :name=>"St. John the Baptist DHS", :website=>"http://www.sjbrobotics.org", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=891", :city=>"Syracuse, NY", :teamnumber=>"891", :country=>"", :state=>"", :rookieyear=>"2002", :robotname=>"", :name=>"Syracuse Research Corporation/Syracuse Research Corporation & Central Technical Vocational Center", :website=>"http://www.neverendingchaos.com", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=892", :city=>"Canal Winchester", :teamnumber=>"892", :country=>"", :state=>" OH", :rookieyear=>"2002", :robotname=>"", :name=>"", :website=>"http://www.geocities.com/team892ascii/", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=894", :city=>"Flint", :teamnumber=>"894", :country=>"USA", :state=>"MI", :rookieyear=>"2002", :robotname=>"", :name=>"General Motors Foundaton / Cummings Inc / Phillips Welding & Flint Powers Catholic High School", :website=>"http://www.chargersrobotics.com", :informalname=>"Chargers"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=896", :city=>"Newark", :teamnumber=>"896", :country=>"USA", :state=>"NJ", :rookieyear=>"2002", :robotname=>"Blue Steel I", :name=>"N.J.I.T./Port Authority of NY and NJ & Central High School and Newark Public Schools", :website=>"http://centralrobotics.tk/", :informalname=>"Blue Steel"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=898", :city=>"Glendale, AZ", :teamnumber=>"898", :country=>"", :state=>"", :rookieyear=>"2002", :robotname=>"", :name=>"Ironwood High School", :website=>"http://clubweb.peoriaud.k12.az.us/Ironwood_Robotics/", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=900", :city=>"Durham", :teamnumber=>"900", :country=>"USA", :state=>"NC", :rookieyear=>"2002", :robotname=>"Stanley the U-Bot", :name=>"North Carolina School of Science and Mathematics & Durham Public High Schools", :website=>"http://appsci.ncssm.edu/~team900/2007website/main.html", :informalname=>"Team Infinity"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=902", :city=>"Saginaw, MI", :teamnumber=>"902", :country=>"", :state=>"", :rookieyear=>"2002", :robotname=>"", :name=>"Delphi Saginaw Steering Systems", :website=>"http://www.stcs.org/heritage/robotics", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=903", :city=>"Detroit", :teamnumber=>"903", :country=>"USA", :state=>"MI", :rookieyear=>"2002", :robotname=>"General Ford", :name=>"General Motors/Ford Motor Company & Charles Chadsey High School & Detroit Public Schools", :website=>"http://www.geocities.com/melissa_fayall/chadsey_index.html", :informalname=>"RoboTroopers"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=904", :city=>"Grand Rapids", :teamnumber=>"904", :country=>"USA", :state=>"MI", :rookieyear=>"2002", :robotname=>"", :name=>"Gill Industries/GM - Grand Rapids Metal Center & Creston High School", :website=>"http://www.Creston904.com", :informalname=>"D cubed"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=905", :city=>"Milford", :teamnumber=>"905", :country=>"", :state=>" CT", :rookieyear=>"2002", :robotname=>"Plattform", :name=>"Target Corporation/Northeast Electronics Corporation/Alinabal/Inpho Inc./Platt Tech Parent Faculty Organization & Platt Technical High School", :website=>"http://www.silmarian.com/pt905", :informalname=>"Platt Tech Panthers"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=906", :city=>"Rolla, MO", :teamnumber=>"906", :country=>"", :state=>"", :rookieyear=>"2002", :robotname=>"", :name=>"Rolla Regional Robotics Team", :website=>"http://robotics.umr.edu", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=907", :city=>"Toronto", :teamnumber=>"907", :country=>"Canada", :state=>"ON", :rookieyear=>"2002", :robotname=>"", :name=>"Toronto District School Board & East York Collegiate Institute", :website=>"", :informalname=>"East York Cybernetics"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=908", :city=>"North Charleston, SC", :teamnumber=>"908", :country=>"", :state=>"", :rookieyear=>"2002", :robotname=>"", :name=>"Charleston County School District & Wando High School", :website=>"", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=909", :city=>"Lawrence", :teamnumber=>"909", :country=>"", :state=>" KS", :rookieyear=>"2002", :robotname=>"OzBot Jr.", :name=>"Ewing Marion Kauffman Foundation & Lawrence High School", :website=>"http://www.team909.com", :informalname=>"Junkyard Crew"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=910", :city=>"Madison Heights", :teamnumber=>"910", :country=>"USA", :state=>"MI", :rookieyear=>"2002", :robotname=>"Foley Freeze", :name=>"The Chrysler Foundation & Bishop Foley", :website=>"http://team910.com", :informalname=>"The Foley Freeze"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=912", :city=>"Toronto", :teamnumber=>"912", :country=>"", :state=>" ON", :rookieyear=>"2002", :robotname=>"", :name=>"TDSB & William Lyon Mackenzie CI", :website=>"http://ironlyons.com/", :informalname=>"Toronto"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=913", :city=>"Toronto", :teamnumber=>"913", :country=>"", :state=>" ON", :rookieyear=>"2002", :robotname=>"", :name=>"", :website=>"", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=916", :city=>"Lawrence", :teamnumber=>"916", :country=>"", :state=>" KS", :rookieyear=>"2002", :robotname=>"", :name=>"Skills USA & BPA Free State High School", :website=>"", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=919", :city=>"Toronto", :teamnumber=>"919", :country=>"Canada", :state=>"ON", :rookieyear=>"2002", :robotname=>"", :name=>"TDSB & Harbord CI", :website=>"http://www.harbordci.ca", :informalname=>"Tiger Techs"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=922", :city=>"Laredo", :teamnumber=>"922", :country=>"USA", :state=>"TX", :rookieyear=>"2002", :robotname=>"AFK", :name=>"AEP/Laredo Women's City Club/Powell-Watson Toyota of Laredo & United Engineering & Technology Magnet ", :website=>"http://www.uisd.net/robotics", :informalname=>"ULTIMATE: United Longhorn Team Inspiring Mental Attitude Toward"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=925", :city=>"China Grove, NC", :teamnumber=>"925", :country=>"", :state=>"", :rookieyear=>"2002", :robotname=>"", :name=>"Grainger Industrial Supply & South Rowan High School", :website=>"http://www.southrowan.org/", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=926", :city=>"Raleigh", :teamnumber=>"926", :country=>"", :state=>" NC", :rookieyear=>"2002", :robotname=>"", :name=>"Cisco Systems/ABB/GSK & Broughton HS", :website=>"http://www.freewebs.com/bhsfirst", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=928", :city=>"Washington", :teamnumber=>"928", :country=>"", :state=>" DC", :rookieyear=>"2002", :robotname=>"", :name=>"NASA & Benjamin Banneker Academic HS", :website=>"http://www.benjaminbanneker.org/", :informalname=>"Hounds of Steel"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=930", :city=>"Mukwonago", :teamnumber=>"930", :country=>"USA", :state=>"WI", :rookieyear=>"2002", :robotname=>"Mare Crisium", :name=>"NASA/GE Volunteers & Mukwonago High School", :website=>"http://www.team930.org", :informalname=>"Mukwonago B.E.A.R.s (Building Extremely Awesome Robots)"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=931", :city=>"St. Louis", :teamnumber=>"931", :country=>"USA", :state=>"MO", :rookieyear=>"2002", :robotname=>"G8", :name=>"Boeing/Emerson/Ranken Technical College/Anheuser-Busch/WaterJet Tech/CopperBend Pharmacy/Belleville Kiwanis/Continental Fabricators & Gateway Institute of Technology & St. Louis Public Schools", :website=>"http://www.gearmo.org", :informalname=>"Perpetual Chaos"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=932", :city=>"Tulsa", :teamnumber=>"932", :country=>"USA", :state=>"OK", :rookieyear=>"2002", :robotname=>"", :name=>"The Nordam Group / Express Integrated Technologies / American Electric Power / Allied Fence Company / HE&M Saw / Memorial Robotics Booster Club & Tulsa Engineering Academy at Memorial High School", :website=>"", :informalname=>"Circuit Chargers"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=933", :city=>"Rockford", :teamnumber=>"933", :country=>"", :state=>" IL", :rookieyear=>"2002", :robotname=>"", :name=>"Rockford Home School", :website=>"http://www.trigos.org", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=935", :city=>"Newton", :teamnumber=>"935", :country=>"USA", :state=>"KS", :rookieyear=>"2002", :robotname=>"Collateral Damage", :name=>"Boeing/Airbus/Higgs Tech Consulting/SME/WallaceTozier & Newton High School", :website=>"http://team935.com", :informalname=>"RaileRobotics"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=936", :city=>",", :teamnumber=>"936", :country=>"", :state=>"", :rookieyear=>"2002", :robotname=>"", :name=>"", :website=>"", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=937", :city=>"Overland Park", :teamnumber=>"937", :country=>"USA", :state=>"KS", :rookieyear=>"2002", :robotname=>"", :name=>"Ewing Marion Kauffman Foundation/GE Volunteers & Shawnee Mission North HS", :website=>"http://smnorthrobotics.com", :informalname=>"North Stars"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=938", :city=>"Richmond", :teamnumber=>"938", :country=>"USA", :state=>"KS", :rookieyear=>"2002", :robotname=>"", :name=>"NASA & Central Heights High School", :website=>"", :informalname=>"Viking Xtreme Robotics"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=939", :city=>"Sisseton", :teamnumber=>"939", :country=>"", :state=>" SD", :rookieyear=>"2002", :robotname=>"", :name=>"Sisseton High School", :website=>"", :informalname=>"Hiphopanonymous"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=940", :city=>"Brookings, SD", :teamnumber=>"940", :country=>"", :state=>"", :rookieyear=>"2002", :robotname=>"", :name=>"NASA/Larson Manufacturing", :website=>"http://js046.k12.sd.us/Brookings%20High%20School.htm", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=942", :city=>"Woonsocket, SD", :teamnumber=>"942", :country=>"", :state=>"", :rookieyear=>"2002", :robotname=>"", :name=>"", :website=>"http://jv030.k12.sd.us", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=943", :city=>"Volga, SD", :teamnumber=>"943", :country=>"", :state=>"", :rookieyear=>"2002", :robotname=>"", :name=>"", :website=>"", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=945", :city=>"Orlando", :teamnumber=>"945", :country=>"USA", :state=>"FL", :rookieyear=>"2002", :robotname=>"", :name=>"Boeing/DeVry Univeristy/Fluid Power Society/Walt Disney World & Colonial High School", :website=>"http://www.team945robotics.net", :informalname=>"Team Banana"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=948", :city=>"Bellevue", :teamnumber=>"948", :country=>"USA", :state=>"WA", :rookieyear=>"2002", :robotname=>"", :name=>"Boeing / Smith & Tinker & Newport High School", :website=>"http://www.nrg948.org/", :informalname=>"NRG (Newport Robotics Group)"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=949", :city=>"Bellevue", :teamnumber=>"949", :country=>"USA", :state=>"WA", :rookieyear=>"2002", :robotname=>"Tigermoose", :name=>"Boeing/Intellectual Ventures/Office of the Superintendant of Public Instruction, Washington State/Tableau Software & Bellevue High School", :website=>"", :informalname=>"Wolverine Robotics"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=953", :city=>"Reno, NV", :teamnumber=>"953", :country=>"", :state=>"", :rookieyear=>"2002", :robotname=>"", :name=>"University Nevada Reno & Reno High School", :website=>"http://www.rhsrobotics.4mg.com", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=954", :city=>"Reno, NV", :teamnumber=>"954", :country=>"", :state=>"", :rookieyear=>"2002", :robotname=>"", :name=>"NASA & Sage Ridge School", :website=>"http://www.sageridge.org/robotics/index.htm", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=955", :city=>"Corvallis", :teamnumber=>"955", :country=>"USA", :state=>"OR", :rookieyear=>"2002", :robotname=>"RaiderBOT VIII", :name=>"Videx/Fred Meyer/SRT-Nypro/Hytek Plastics/Discovery Management Group & Crescent Valley High School", :website=>"http://www.cvhsrobotics.net", :informalname=>"CV Robotics"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=956", :city=>"Corvallis", :teamnumber=>"956", :country=>"USA", :state=>"OR", :rookieyear=>"2002", :robotname=>"Ice Cube", :name=>"NASA / Platt Electric & Santiam Christian Schools", :website=>"http://www.santiamchristian.org/home/Activities/Robotics", :informalname=>"Eagle Cybertechnology"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=957", :city=>"Albany", :teamnumber=>"957", :country=>"USA", :state=>"OR", :rookieyear=>"2002", :robotname=>"Spike", :name=>"Boeing / BAE Systems / Viper Northwest / SRT-Nypro / Oregon State University & West Albany High School & South Albany High School", :website=>"http://www.team957.com", :informalname=>"SWARM"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=959", :city=>"Palmer, AK", :teamnumber=>"959", :country=>"", :state=>"", :rookieyear=>"2002", :robotname=>"", :name=>"Matanuska Telephone Association (MTA)", :website=>"http://phs.mat-su.k12.ak.us", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=961", :city=>"Winnemucca", :teamnumber=>"961", :country=>"", :state=>" NV", :rookieyear=>"2002", :robotname=>"", :name=>"", :website=>"http://www.humboldt.k12.nv.us/lhs", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=962", :city=>"Bullhead, AZ", :teamnumber=>"962", :country=>"", :state=>"", :rookieyear=>"2002", :robotname=>"", :name=>"Mohave High School", :website=>"", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=963", :city=>"Columbus", :teamnumber=>"963", :country=>"USA", :state=>"OH", :rookieyear=>"2002", :robotname=>"Beast", :name=>"American Electric Power / Battelle / Columbus State Community College & Columbus East High School & Columbus City Schools & South East Career Center", :website=>"", :informalname=>"Tiger Techs"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=964", :city=>"Bedford", :teamnumber=>"964", :country=>"USA", :state=>"OH", :rookieyear=>"2002", :robotname=>"Papabear", :name=>"AT&T/Ford Motor Co. & Bedford HIgh School", :website=>"http://www.team964.com", :informalname=>"Bearcats"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=966", :city=>"Cleveland Heights", :teamnumber=>"966", :country=>"", :state=>" OH", :rookieyear=>"2002", :robotname=>"", :name=>"", :website=>"http://tech.chhs.chuh.org/tech.html", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=967", :city=>"Marion", :teamnumber=>"967", :country=>"USA", :state=>"IA", :rookieyear=>"2002", :robotname=>"Mean Machine", :name=>"Rockwell Collins/EHA/Iowa Fluid Power/Linn-Mar Foundation/Verizon & Linn-Mar High School", :website=>"http://www.lmrobotics.com", :informalname=>"Iron Lions"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=968", :city=>"West Covina", :teamnumber=>"968", :country=>"USA", :state=>"CA", :rookieyear=>"2002", :robotname=>"", :name=>"QUALCOMM Incorporated/BAE Systems/Cardinal Industrial Finishes/Vivid-Hosting.net/J.C. Penny After School Fund/Cal Poly Pomona University/JCPenney & West Covina High School", :website=>"http://rawc.net", :informalname=>"RAWC (Robotics Alliance Of West Covina)"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=970", :city=>"East Cleveland", :teamnumber=>"970", :country=>"", :state=>" OH", :rookieyear=>"2002", :robotname=>"", :name=>"Concept XXI/ECCS/21st Century CLC/Earthman's Education Services, Inc./R P Carbone & Shaw High School", :website=>"http://www.clevelandtechworks.org", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=971", :city=>"Mountain View", :teamnumber=>"971", :country=>"USA", :state=>"CA", :rookieyear=>"2002", :robotname=>"", :name=>"Abbott Fund / Berger Manufacturing, Inc / St. Jude Medical Foundation / Google / The Linley Group / Intuitive Surgical, Inc. / General Dynamics & Mountain View High School", :website=>"http://www.spartanrobotics.org", :informalname=>"Spartan Robotics"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=972", :city=>"Los Gatos", :teamnumber=>"972", :country=>"", :state=>" CA", :rookieyear=>"2002", :robotname=>"", :name=>"Los Gatos High School", :website=>"http://www.lghs.net/clubs/robotics/patch/index.html", :informalname=>"Iron Paw"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=973", :city=>"Atascadero", :teamnumber=>"973", :country=>"USA", :state=>"CA", :rookieyear=>"2002", :robotname=>"Robohound", :name=>"LARON Incorporated/Pacific Gas & Electric/JLP Enterprises LLC/Cal Poly San Luis Obispo & Atascadero High School Greyhound Revolutionary Robotics", :website=>"http://www.greyhound-robotics.com", :informalname=>"Greybots"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=974", :city=>"Los Angeles", :teamnumber=>"974", :country=>"", :state=>" CA", :rookieyear=>"2002", :robotname=>"Nautilus VI", :name=>"Toyota Technical Center/IO Controls/Mr. & Mrs. Stephen Petty/Gerald Oppenheimer Family Foundation & Marymount High School", :website=>"http://fc.mhs-la.org/~nautilus1/website/index.html", :informalname=>"Los Angeles"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=975", :city=>"Midlothian", :teamnumber=>"975", :country=>"USA", :state=>"VA", :rookieyear=>"2002", :robotname=>"Eclipse", :name=>"Dominion/PEER Tech Prep Consortium/John Tyler Community College & James River High School", :website=>"http://couillard.wikispaces.com/SYNERGY", :informalname=>"Synergy Robotics"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=976", :city=>"Nottoway, VA", :teamnumber=>"976", :country=>"", :state=>"", :rookieyear=>"2002", :robotname=>"", :name=>"AB's Welding/Longwood ITTTIP/Virginia Business Education Partnership & Nottoway High School", :website=>"http://nottowaynt.k12.nottoway.state.va.us/nhs/robot/default.htm", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=977", :city=>"South Boston", :teamnumber=>"977", :country=>"USA", :state=>"VA", :rookieyear=>"2002", :robotname=>"", :name=>"Dominion Power & Halifax High School and STEM Academy", :website=>"http://www.halifax.k12.va.us/team977", :informalname=>"Cometbots"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=979", :city=>"Dayton, OH", :teamnumber=>"979", :country=>"", :state=>"", :rookieyear=>"2002", :robotname=>"", :name=>"NASA Glenn Research Center/Delphi Automative Systems Dayton Technical Center/Sinclair Community College/Wright Patterson Air Force Base & Dayton Public School District", :website=>"http://TBA", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=980", :city=>"No. Los Angeles Area", :teamnumber=>"980", :country=>"USA", :state=>"CA", :rookieyear=>"2002", :robotname=>"Lightning", :name=>"NASA-JPL/ThunderBots/Boston Scientific/Solutions for Automation/Neighbors Empowering Youth/Crystal View Corp. & Burroughs High School & South Pasadena High School", :website=>"http://www.FRCTeam980.com", :informalname=>"ThunderBots"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=981", :city=>"Lebec", :teamnumber=>"981", :country=>"USA", :state=>"CA", :rookieyear=>"2002", :robotname=>"Gus", :name=>"NASA/Instr. Soc. of America/Tejon Ranch/Exxon-Mobil/Chevron USA Inc/Alpine Lumber & Frazier Mountain High", :website=>"http://falcon.el-tejon.k12.ca.us/Clubs/robo2/frame03.htm", :informalname=>"Snowbotics"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=982", :city=>"Sioux Falls, SD", :teamnumber=>"982", :country=>"", :state=>"", :rookieyear=>"2002", :robotname=>"", :name=>"South Dakota Space Grant Consortium/NASA/Augustana College & O'Gorman High School", :website=>"http://www.sfcss.org/OgormanHS/Departments/robotics", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=987", :city=>"Las Vegas", :teamnumber=>"987", :country=>"USA", :state=>"NV", :rookieyear=>"2002", :robotname=>"Wild Card", :name=>"Albertsons / S & S Philpott LLC. / Cirque du Soleil & Cimarron-Memorial High School", :website=>"http://www.team987.com", :informalname=>"HIGHROLLERS"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=988", :city=>"Las Vegas", :teamnumber=>"988", :country=>"USA", :state=>"NV", :rookieyear=>"2002", :robotname=>"", :name=>"Clark High School", :website=>"http://ccsd.net/schools/clark/chs_robotics2.htm", :informalname=>"Robotic Phun"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=989", :city=>"Las Vegas", :teamnumber=>"989", :country=>"USA", :state=>"NV", :rookieyear=>"2002", :robotname=>"Junk Yard Dog", :name=>"Palo Verde High School Science &Technology Club", :website=>"http://www.paloverde.org/paulus/robotics", :informalname=>"Palo"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=990", :city=>"Las Vegas", :teamnumber=>"990", :country=>"", :state=>" NV", :rookieyear=>"2002", :robotname=>"", :name=>"Bechtel Nevada/University Nevada Las Vegas & Advanced Technologies Academy", :website=>"http://www.atech.org/faculty/gauthier/robot/", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=991", :city=>"Phoenix", :teamnumber=>"991", :country=>"USA", :state=>"AZ", :rookieyear=>"2002", :robotname=>"", :name=>"BAE Systems/Kitchell & Brophy College Preparatory", :website=>"http://www.brophyrobotics.org", :informalname=>"The Dukes"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=992", :city=>"North Hollywood, CA", :teamnumber=>"992", :country=>"", :state=>"", :rookieyear=>"2002", :robotname=>"", :name=>"NASA Langley Research Center & Oakwood School", :website=>"http://www.oakwoodrobotics.com", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=995", :city=>"Alhambra", :teamnumber=>"995", :country=>"USA", :state=>"CA", :rookieyear=>"2002", :robotname=>"", :name=>"Mark Keppel High School", :website=>"HTTP://WWW.TEAM995.COM", :informalname=>"Monkey Wrenchers"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=996", :city=>"Casa Grande", :teamnumber=>"996", :country=>"USA", :state=>"AZ", :rookieyear=>"2002", :robotname=>"", :name=>"Casa Grande High School", :website=>"", :informalname=>"Mecha-Knights"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=997", :city=>"Corvallis", :teamnumber=>"997", :country=>"USA", :state=>"OR", :rookieyear=>"2002", :robotname=>"Spartacus", :name=>"Videx Corporation/Outback Manufacturing & Corvallis High School", :website=>"http://www.team997.org", :informalname=>"Spartans"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=998", :city=>"Soldotna, AK", :teamnumber=>"998", :country=>"", :state=>"", :rookieyear=>"2002", :robotname=>"", :name=>"British Petroleum & Soldotna High School", :website=>"http://www.kpbsd.k12.ak.us/sohi/robotics", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=999", :city=>"Cheshire", :teamnumber=>"999", :country=>"USA", :state=>"CT", :rookieyear=>"2002", :robotname=>"Crash", :name=>"Sikorsky Aircraft/Esty Environmental Partners/Iris Meyer Realtors/Richard Chevrolet/RIFF Company, Inc/Steaming Bean LLC/William J. Stanley, Jr/Computer U Inc/O.J. Mann Electric Services, Inc. & Cheshire High School", :website=>"", :informalname=>"C.R.A.S.H. (Cheshire Robotics and Sikorsky Helicopters)"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1000", :city=>"Valparaiso", :teamnumber=>"1000", :country=>"USA", :state=>"IN", :rookieyear=>"2003", :robotname=>"", :name=>"Indiana Department of Workforce Development / Urschel Laboratories Incorporated & Wheeler High School", :website=>"http://www.cybearcats.com", :informalname=>"Cybearcats"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1001", :city=>"Lyndhurst", :teamnumber=>"1001", :country=>"USA", :state=>"OH", :rookieyear=>"2003", :robotname=>"Hacksaw VII", :name=>"NASA / Rockwell Automation / WVIZ ideastream & Charles F. Brush High School", :website=>"http://sites.google.com/site/homeofbrushrobotics/", :informalname=>"Hacksaw"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1002", :city=>"Marietta", :teamnumber=>"1002", :country=>"USA", :state=>"GA", :rookieyear=>"2003", :robotname=>"", :name=>"GE Volunteers/Cobb EMC/ITT-TECH/CEISMC/COACH Robotics/AT & T Pioneers/International Technology Solutions, Inc./Center For Advanced Studies/Lockheed Martin/Women In Technology & Wheeler High School", :website=>"http://www.circuitrunners.com", :informalname=>"The CircuitRunners"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1004", :city=>"Richburg, SC", :teamnumber=>"1004", :country=>"", :state=>"", :rookieyear=>"2003", :robotname=>"", :name=>"Lewisville High School", :website=>"http://www.chester.k12.sc.us/lewisvillehigh/robotics/rhome.html", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1005", :city=>"St. Louis", :teamnumber=>"1005", :country=>"", :state=>" MO", :rookieyear=>"2003", :robotname=>"", :name=>"", :website=>"http://portal.chaminade-stl.com", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1006", :city=>"Port Perry", :teamnumber=>"1006", :country=>"Canada", :state=>"ON", :rookieyear=>"2003", :robotname=>"Fast Eddie VI", :name=>"General Motors of Canada (Engng & Product Planning) & Port Perry High School", :website=>"http://www.team1006.ca", :informalname=>"Port Perry Robotics"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1007", :city=>"Snellville", :teamnumber=>"1007", :country=>"", :state=>" GA", :rookieyear=>"2003", :robotname=>"The Pincher", :name=>"ST Realtor/CEC Controls Company, Inc./Mechanical Engineering Consultant & Gwinnett County Public Schools & Shiloh High School & YMVP", :website=>"http://www.shiloh.high.gwinnett.k12.ga.us/teachers/852/852.html", :informalname=>"Snellville"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1008", :city=>"Columbus", :teamnumber=>"1008", :country=>"USA", :state=>"OH", :rookieyear=>"2003", :robotname=>"Chief Lugnut", :name=>"NASA / Honda of America / American Electric Power / Chipotle / Battelle / Beechwold Hardware / Columbus State Community College & Southeast Career Center High School & Columbus City Schools & Whetstone High School", :website=>"http://ed1.eng.ohio-state.edu/lugnut/index.htm", :informalname=>"Team Lugnut"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1009", :city=>"North York", :teamnumber=>"1009", :country=>"", :state=>" ON", :rookieyear=>"2003", :robotname=>"", :name=>"Georges Vanier Secondary School & Toronto District School Board", :website=>"http://www.georgesvanier.com", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1010", :city=>"Ortonville, MI", :teamnumber=>"1010", :country=>"", :state=>"", :rookieyear=>"2003", :robotname=>"", :name=>"Continental Teves & Brandon High School", :website=>"http://www.bhswebteam.com/robotics", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1011", :city=>"Tucson", :teamnumber=>"1011", :country=>"USA", :state=>"AZ", :rookieyear=>"2003", :robotname=>"Zeek", :name=>"Hanlon Engineering / M3 Engineering / IBM / WizardOfAz & Sonoran Science Academy", :website=>"http://crush1011.org", :informalname=>"CRUSH"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1013", :city=>"Queen Creek", :teamnumber=>"1013", :country=>"USA", :state=>"AZ", :rookieyear=>"2003", :robotname=>"Velcro V", :name=>"NASA / YESCo / Kwiatt Custom Paint / Parents of QCHS Robotics & Queen Creek HS & Queen Creek Unified School District", :website=>"http://team1013.org", :informalname=>"The Phoenix"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1014", :city=>"Dublin", :teamnumber=>"1014", :country=>"USA", :state=>"OH", :rookieyear=>"2003", :robotname=>"Bad Robot 5.0", :name=>"Dublin Robotics Boosters/OSU FIRST & Dublin City Schools", :website=>"http://www.dublinrobotics.com", :informalname=>"Bad Robots"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1015", :city=>"Ann Arbor", :teamnumber=>"1015", :country=>"", :state=>" MI", :rookieyear=>"2003", :robotname=>"", :name=>"Yazaki North America & Pioneer High School", :website=>"http://PiHiSamurai.org", :informalname=>"Pi Hi Samurai"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1016", :city=>"Darlington, SC", :teamnumber=>"1016", :country=>"", :state=>"", :rookieyear=>"2003", :robotname=>"", :name=>"Darlington County Schools", :website=>"http://robots.darlington.k12.sc.us", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1017", :city=>"Flint, MI", :teamnumber=>"1017", :country=>"", :state=>"", :rookieyear=>"2003", :robotname=>"", :name=>"GM", :website=>"", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1018", :city=>"Indianapolis", :teamnumber=>"1018", :country=>"USA", :state=>"IN", :rookieyear=>"2003", :robotname=>"Thing-a-ma-jig", :name=>"Rolls Royce/Waterjet Cutting of Indiana/Indiana Department of Workforce Development/Beckman Coulter/Diversified Systems, Inc/ITT Technical Institute & Pike Academy of Science and Engineering, Pike High School", :website=>"http://www.robodevils.com", :informalname=>"RoboDevils"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1019", :city=>"Westhampton Beach", :teamnumber=>"1019", :country=>"", :state=>" NY", :rookieyear=>"2003", :robotname=>"", :name=>"Westhampton Beach High School", :website=>"", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1020", :city=>"Muncie", :teamnumber=>"1020", :country=>"", :state=>" IN", :rookieyear=>"2003", :robotname=>"", :name=>"", :website=>"http://www.team1020.org", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1022", :city=>"Fort Wayne", :teamnumber=>"1022", :country=>"", :state=>" IN", :rookieyear=>"2003", :robotname=>"", :name=>"", :website=>"http://www.archergeeks.org", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1023", :city=>"Temperance", :teamnumber=>"1023", :country=>"USA", :state=>"MI", :rookieyear=>"2003", :robotname=>"", :name=>"RD Tool / Midwest Fluid Power / La-Z-Boy Inc. / VDS / Promedica Health System & Bedford High School", :website=>"http://www.bedfordexpress.org", :informalname=>"Bedford Express"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1024", :city=>"Indianapolis", :teamnumber=>"1024", :country=>"USA", :state=>"IN", :rookieyear=>"2003", :robotname=>"", :name=>"NASA/Aircom Manufacturing/Beckman Coulter/Rolls-Royce Corporation & Bernard K. McKenzie Career Center", :website=>"http://www.mckenzierobotics.org", :informalname=>"Kil-A-Bytes"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1025", :city=>"Ferndale", :teamnumber=>"1025", :country=>"USA", :state=>"MI", :rookieyear=>"2003", :robotname=>"Krispy Kreme Venom", :name=>"IMPI ROBOTICS/Schaeffler Group/Trophy Robotics/OUR Credit Union/Leoni Corporation/F'SATIE/Ferndale Education Foundation/Tshwane University of Technology & Ferndale Schools & Royal Oak Schools", :website=>"http://www.impirobotics.org", :informalname=>"IMPIS"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1026", :city=>"York", :teamnumber=>"1026", :country=>"USA", :state=>"SC", :rookieyear=>"2003", :robotname=>"CougarBot", :name=>"IMT York & Bank of York & Floyd D. Johnson Technology Center & York Comprehensive High School", :website=>"http://www.york.k12.sc.us", :informalname=>"Cougars"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1027", :city=>"West Springfield", :teamnumber=>"1027", :country=>"USA", :state=>"MA", :rookieyear=>"2003", :robotname=>"", :name=>"ITT Power Solutions/NAEA Energy Massachusetts, LLC & West Springfield High School", :website=>"http://www.team1027.com", :informalname=>"Mechatronic Maniacs"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1028", :city=>"Huntsville", :teamnumber=>"1028", :country=>"", :state=>" AL", :rookieyear=>"2003", :robotname=>"", :name=>"Pratt & Whitney Automation & Madison County Schools", :website=>"http://www.firstubergeeks.com", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1029", :city=>"Miami", :teamnumber=>"1029", :country=>"USA", :state=>"FL", :rookieyear=>"2003", :robotname=>"", :name=>"Motorola & Belen Jesuit", :website=>"http://www.wolvcatrobotics.com", :informalname=>"Wolverine Robotics"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1030", :city=>"Groveport, OH", :teamnumber=>"1030", :country=>"", :state=>"", :rookieyear=>"2003", :robotname=>"", :name=>"NASA/American Electric Power & Eastland Career Center", :website=>"http://first.efcts.us", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1031", :city=>"San Francisco", :teamnumber=>"1031", :country=>"", :state=>" CA", :rookieyear=>"2003", :robotname=>"EliteBot", :name=>"Google & John O'Connell High School", :website=>"http://www.team1031.org", :informalname=>"San Francisco"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1033", :city=>"Richmond", :teamnumber=>"1033", :country=>"USA", :state=>"VA", :rookieyear=>"2003", :robotname=>"Noodle", :name=>"Alstom Power, Inc./FNBC & Benedictine High School & Saint Gertrude High School", :website=>"http://www.1033robotics3065.com", :informalname=>"Holy Rollers"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1034", :city=>"Chicago", :teamnumber=>"1034", :country=>"", :state=>" IL", :rookieyear=>"2003", :robotname=>"", :name=>"", :website=>"", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1035", :city=>",", :teamnumber=>"1035", :country=>"", :state=>"", :rookieyear=>"2003", :robotname=>"", :name=>"", :website=>"", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1036", :city=>"Toronto, ON", :teamnumber=>"1036", :country=>"", :state=>"", :rookieyear=>"2003", :robotname=>"", :name=>"McDonald's Restaurants of Canada Limited/Woburn Collegiate Institute/Apollo Sheet Metal Contractors Limited/Vaughan Electrcial Supply Co. Ltd & Central Technical School", :website=>"http://www.centraltech.ca", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1037", :city=>"Rochester Hills, MI", :teamnumber=>"1037", :country=>"", :state=>"", :rookieyear=>"2003", :robotname=>"", :name=>"Ford Motor Company & Stoney Creek and Rochester H.S.", :website=>"http://teamfordfirst.org/Team1037", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1038", :city=>"Liberty Township", :teamnumber=>"1038", :country=>"USA", :state=>"OH", :rookieyear=>"2003", :robotname=>"Sharky's Machine", :name=>"P & G/BAE Systems Security & Survivability/Alexander & Associates/Noxsel-Waddell Foundation/Miami University & Lakota East High School", :website=>"http://www.lakotarobotics.com", :informalname=>"Thunderhawks"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1039", :city=>"Seattle", :teamnumber=>"1039", :country=>"", :state=>" WA", :rookieyear=>"2003", :robotname=>"", :name=>"kevinro.com/Seattle Robotics Society & Chief Sealth High School", :website=>"http://www.team1039.org", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1040", :city=>"Atlanta", :teamnumber=>"1040", :country=>"", :state=>" GA", :rookieyear=>"2003", :robotname=>"", :name=>"Paideia School", :website=>"", :informalname=>"Atlanta"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1041", :city=>"Austell, GA", :teamnumber=>"1041", :country=>"", :state=>"", :rookieyear=>"2003", :robotname=>"", :name=>"South Cobb High School", :website=>"", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1043", :city=>"San Jose, CA", :teamnumber=>"1043", :country=>"", :state=>"", :rookieyear=>"2003", :robotname=>"", :name=>"Cortec Precision Sheetmetal/Best Buy & Kehillah Jewish High School", :website=>"http://www.kehillahhigh.org/robotics", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1045", :city=>"Fremont, CA", :teamnumber=>"1045", :country=>"", :state=>"", :rookieyear=>"2003", :robotname=>"", :name=>"", :website=>"http://www.msjrobotics.com", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1046", :city=>"Palm Desert, CA", :teamnumber=>"1046", :country=>"", :state=>"", :rookieyear=>"2003", :robotname=>"", :name=>"Palm Desert High School Foundation & Palm Desert High School & Desert Sands Unified School District", :website=>"http://prismrobotics.org", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1047", :city=>"Irvine", :teamnumber=>"1047", :country=>"USA", :state=>"CA", :rookieyear=>"2003", :robotname=>"Zippy", :name=>"Boeing/Raytheon Space and Airborne Systems & Woodbridge High School", :website=>"http://www.teamechoes.com/index.php?page=9", :informalname=>"Team Echoes"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1048", :city=>"Manville", :teamnumber=>"1048", :country=>"USA", :state=>"NJ", :rookieyear=>"2003", :robotname=>"MMIX", :name=>"National Starch and Chemical Co., Inc/Brother International/ADP Foundation & Manville High School", :website=>"http://www.manvilleschools.org/manville/High%20School/Robotics%20Team/", :informalname=>"Mustang Robotics"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1049", :city=>"Toronto", :teamnumber=>"1049", :country=>"", :state=>" ON", :rookieyear=>"2003", :robotname=>"", :name=>"", :website=>"http://www.archangelrobotics.com/index.php", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1051", :city=>"Marion", :teamnumber=>"1051", :country=>"USA", :state=>"SC", :rookieyear=>"2003", :robotname=>"T2", :name=>"Marion County Technical Education Center", :website=>"http://www.first.mctec.org", :informalname=>"Technical Terminators"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1052", :city=>",", :teamnumber=>"1052", :country=>"", :state=>"", :rookieyear=>"2003", :robotname=>"", :name=>"Pinole Valley High School", :website=>"", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1053", :city=>"Ottawa", :teamnumber=>"1053", :country=>"Canada", :state=>"ON", :rookieyear=>"2003", :robotname=>"", :name=>"General Bearing Service Inc. / ScotiaBank / Lockheed Martin / Ottawa Universiry / INSA & Glebe Collegiate High School & O.C.D.S.B.", :website=>"http://www.gleberobotics.com", :informalname=>"Gears of Glebe"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1054", :city=>"Buckingham", :teamnumber=>"1054", :country=>"", :state=>" VA", :rookieyear=>"2003", :robotname=>"", :name=>"Starcare Foundation/UVA Career Development Office/Buckingham Farm Bureau/Kyanite Mining Corporation/VA Gateway/Virginia Farm Bureau/Von Holtzbrinck Publishing Services & Buckingham County Public Schools", :website=>"http://www.knightmarerobotics.com", :informalname=>"Buckingham"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1055", :city=>"Chicago, IL", :teamnumber=>"1055", :country=>"", :state=>"", :rookieyear=>"2003", :robotname=>"", :name=>"Newark-In-One & Francis W. Parker School", :website=>"http://www.fwpschool.org/FIRST", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1056", :city=>"Hilo", :teamnumber=>"1056", :country=>"USA", :state=>"HI", :rookieyear=>"2003", :robotname=>"", :name=>"BAE Systems/Thirty Meter Telescope & Waiakea High School", :website=>"", :informalname=>"Warrior Pride"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1057", :city=>"Sandersville", :teamnumber=>"1057", :country=>"", :state=>" GA", :rookieyear=>"2003", :robotname=>"", :name=>"Thiele Kaolin/Sandersville Railroad/Burgess Pigment/Imerys/J. M. Huber/Sandersville Technical College & Brentwood School", :website=>"", :informalname=>"The Blue Knights"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1058", :city=>"Londonderry", :teamnumber=>"1058", :country=>"USA", :state=>"NH", :rookieyear=>"2003", :robotname=>"Confusion", :name=>"BAE Systems/Parker Pneutronics/Fleet Ready Corp. & Londonderry High School", :website=>"http://team1058.com/", :informalname=>"PVC Pirates"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1059", :city=>"Simsbury, CT", :teamnumber=>"1059", :country=>"", :state=>"", :rookieyear=>"2003", :robotname=>"", :name=>"EBA&D", :website=>"http://www.ethelwalker.org", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1061", :city=>"Brooklyn, NY", :teamnumber=>"1061", :country=>"", :state=>"", :rookieyear=>"2003", :robotname=>"", :name=>"Polytechnic University & John Dewey High School", :website=>"", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1062", :city=>"Celebration", :teamnumber=>"1062", :country=>"", :state=>" FL", :rookieyear=>"2003", :robotname=>"", :name=>"Disney & Celebration High School", :website=>"http://www.celhs.osceola.k12.fl.us/FIRST/index.html", :informalname=>"Celebration"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1063", :city=>"Toronto, ON", :teamnumber=>"1063", :country=>"", :state=>"", :rookieyear=>"2003", :robotname=>"", :name=>"Toronto District School Board", :website=>"", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1064", :city=>"South Milwaukee, WI", :teamnumber=>"1064", :country=>"", :state=>"", :rookieyear=>"2003", :robotname=>"", :name=>"Milwaukee School Of Engineering/IEEE Milwaukee Section/SME Milwaukee Chapter 4/Pentair Water Treatment", :website=>"http://www.firstwildbeast.com/", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1065", :city=>"Kissimmee", :teamnumber=>"1065", :country=>"USA", :state=>"FL", :rookieyear=>"2003", :robotname=>"", :name=>"Boeing/Lockheed Martin/Walt Disney World Ride and Show Engineering/BalloonBRITES.com/DeVry University & Osceola High School", :website=>"http://www.team1065.com", :informalname=>"Tatsu"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1067", :city=>"Saint Louis, MO", :teamnumber=>"1067", :country=>"", :state=>"", :rookieyear=>"2003", :robotname=>"", :name=>"The Boeing Company/Troco, L.L.C.", :website=>"http://www.geocities.com/sluhrobotics", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1068", :city=>"Orlando", :teamnumber=>"1068", :country=>"", :state=>" FL", :rookieyear=>"2003", :robotname=>"", :name=>"", :website=>"http://www.team1068.org", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1070", :city=>"Woodland Hills", :teamnumber=>"1070", :country=>"USA", :state=>"CA", :rookieyear=>"2003", :robotname=>"The Spark", :name=>"Dreamworks Animation skg/California State University, Northridge/Raytheon & Louisville High School", :website=>"http://www.louisvillehs.org/robotics_website/homepage.html", :informalname=>"Royal Robotrons"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1071", :city=>"Wolcott", :teamnumber=>"1071", :country=>"USA", :state=>"CT", :rookieyear=>"2003", :robotname=>"MAX", :name=>"UTC Sikorsky Aircraft & Wolcott High School", :website=>"http://www.max1071.com", :informalname=>"Team Max"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1072", :city=>"San Jose", :teamnumber=>"1072", :country=>"USA", :state=>"CA", :rookieyear=>"2003", :robotname=>"Xor", :name=>"Harker Foundation/Intuitive Surgical, Inc. & The Harker School", :website=>"http://web.harker.org/robotics/", :informalname=>"Harker Robotics"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1073", :city=>"Hollis", :teamnumber=>"1073", :country=>"USA", :state=>"NH", :rookieyear=>"2003", :robotname=>"Locofoco", :name=>"BAE SYSTEMS/Technology Garden & Hollis-Brookline High School", :website=>"http://www.theforceteam.com", :informalname=>"The Force Team"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1075", :city=>"Whitby", :teamnumber=>"1075", :country=>"Canada", :state=>"ON", :rookieyear=>"2003", :robotname=>"Sprockets 6", :name=>"MTC/Ontario Power Generation & Sinclair Secondary School", :website=>"http://sinclair-sprockets.com", :informalname=>"Sprockets"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1077", :city=>"Miami, FL", :teamnumber=>"1077", :country=>"", :state=>"", :rookieyear=>"2003", :robotname=>"", :name=>"NASA/Environmental Aeroscience Corporation/Starbot Inc. & STAR Academy", :website=>"", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1079", :city=>"Temecula", :teamnumber=>"1079", :country=>"", :state=>" CA", :rookieyear=>"2003", :robotname=>"", :name=>"Economic Development Corporation of Southwest California/Guidant/Southern California Gas Company/Solid State Stamping/Magnecomp Corporation/Cosworth, Inc./Flashpoint Machine/Crowder Machine and Tool/Chaparral High School Education Foundation & Chaparral High School", :website=>"", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1081", :city=>"Atlanta, GA", :teamnumber=>"1081", :country=>"", :state=>"", :rookieyear=>"2003", :robotname=>"", :name=>"Turner Broadcasting System, Inc./National Society of Black Engineers & North Atlanta High School", :website=>"", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1082", :city=>"Sparks, NV", :teamnumber=>"1082", :country=>"", :state=>"", :rookieyear=>"2003", :robotname=>"", :name=>"University of Nevada, Reno & REED HS", :website=>"http://shsrobot.greatnow.com", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1083", :city=>"Orlando", :teamnumber=>"1083", :country=>"", :state=>" FL", :rookieyear=>"2003", :robotname=>"", :name=>"University High School", :website=>"http://www.team-emoticons.com", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1084", :city=>"Sarnia", :teamnumber=>"1084", :country=>"", :state=>" ON", :rookieyear=>"2003", :robotname=>"", :name=>"Sunoco & St. Clair Secondary School", :website=>"", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1086", :city=>"Glen Allen", :teamnumber=>"1086", :country=>"USA", :state=>"VA", :rookieyear=>"2003", :robotname=>"Blue Munster", :name=>"Flexicell / Honeywell-Tridium / McKesson Corp. / Staff Focus Consulting / Showbest Fixture Corp. / BMG Metals, Inc. / PTC / Segway of Richmond & Deep Run High School", :website=>"http://www.1086BlueCheese.org", :informalname=>"Blue Cheese"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1087", :city=>"Salem", :teamnumber=>"1087", :country=>"", :state=>" OR", :rookieyear=>"2003", :robotname=>"", :name=>"Hanard Machine Inc/West Salem High Education Foundation/Schneider Charitable Foundation/Today's Hair/West Salem Rotary/Meyer Memorial Trust & West Salem High School", :website=>"http://west.salkeiz.k12.or.us/contract/robotics/Robotics/index.htm", :informalname=>"Titronics Digerati"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1088", :city=>"West Hill / Toronto, ON", :teamnumber=>"1088", :country=>"", :state=>"", :rookieyear=>"2003", :robotname=>"", :name=>"", :website=>"http://www.swatt1088.com", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1089", :city=>"Hightstown", :teamnumber=>"1089", :country=>"USA", :state=>"NJ", :rookieyear=>"2003", :robotname=>"Apollo II", :name=>"Bristol-Myers Squibb/Machine Medic/SPECO Tile & Marble, Inc. & Hightstown High School", :website=>"http://www.mercury1089.com", :informalname=>"Team Mercury"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1091", :city=>"Hartford", :teamnumber=>"1091", :country=>"USA", :state=>"WI", :rookieyear=>"2003", :robotname=>"Bird of Prey", :name=>"GE Volunteers / Mantz Automation & Hartford Union High School", :website=>"http://www.team1091.com", :informalname=>"Oriole Assault"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1092", :city=>"Smyrna, GA", :teamnumber=>"1092", :country=>"", :state=>"", :rookieyear=>"2003", :robotname=>"", :name=>"GE Power Systems & Campbell High School", :website=>"", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1093", :city=>"Richmond", :teamnumber=>"1093", :country=>"", :state=>" VA", :rookieyear=>"2003", :robotname=>"", :name=>"CAPTECH VENTURES, INC. & Collegiate School", :website=>"", :informalname=>"Richmond"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1094", :city=>"O'fallon", :teamnumber=>"1094", :country=>"USA", :state=>"MO", :rookieyear=>"2003", :robotname=>"", :name=>"Boeing/Bill Davis Inc./Boeing Employees Community Fund/Diversified Check Solutions LLC/Emerson Motor Technologies/Cuivre River Electric/ITT Technical Institute & River City Robots", :website=>"http://www.rivercityrobots.org", :informalname=>"Channel Cats"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1095", :city=>"Chatham", :teamnumber=>"1095", :country=>"USA", :state=>"VA", :rookieyear=>"2003", :robotname=>"Beast Three", :name=>"Mecklenberg Electric Co-operative/Chatham Rotary Club & Chatham High School & Pittsylvania County Schools", :website=>"", :informalname=>"RoboCavs"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1097", :city=>"Carmichael", :teamnumber=>"1097", :country=>"", :state=>" CA", :rookieyear=>"2003", :robotname=>"", :name=>"", :website=>"http://robotics.jhs.net", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1098", :city=>"Wildwood", :teamnumber=>"1098", :country=>"USA", :state=>"MO", :rookieyear=>"2003", :robotname=>"Oliver", :name=>"Boeing & Rockwood School District", :website=>"http://www.rockwood.k12.mo.us/robotics", :informalname=>"Rockwood Robotics"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1099", :city=>"Brookfield", :teamnumber=>"1099", :country=>"USA", :state=>"CT", :rookieyear=>"2003", :robotname=>"LEO", :name=>"General Electric (GE)/B & A Motorsports/Diversified Global Enterprises -DGE/Goodrich/KatArt/Northeast Utilities/PTC/University of Bridgeport & Brookfield High School", :website=>"http://www.team1099.org", :informalname=>"LIONS"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1100", :city=>"Northboro", :teamnumber=>"1100", :country=>"USA", :state=>"MA", :rookieyear=>"2003", :robotname=>"", :name=>"Rohm and Haas & Algonquin Regional High School", :website=>"http://www.chaonline.com/ARHSrobotics/", :informalname=>"The T-Hawks"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1101", :city=>"Surrey", :teamnumber=>"1101", :country=>"", :state=>" ND", :rookieyear=>"2003", :robotname=>"psy borg", :name=>"University of North Dakota - & Surrey High School -", :website=>"http://piczo.com/SurreyRoboticsTeam?cr=6&rfm=y", :informalname=>"Surrey"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1102", :city=>"Aiken", :teamnumber=>"1102", :country=>"USA", :state=>"SC", :rookieyear=>"2003", :robotname=>"", :name=>"Energy Solutions/BAE Systems/Savannah River Nuclear Solutions/Bridgestone Firestone/Senator Greg and Betty Ryberg/Parsons & Aiken County Public Schools", :website=>"http://www.maikenmagic.com", :informalname=>"Aiken County Robotics Team M'Aiken Magic"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1103", :city=>"Delavan", :teamnumber=>"1103", :country=>"USA", :state=>"WI", :rookieyear=>"2003", :robotname=>"We are in the process of naming our Robot", :name=>"Haskins Inc/MPC/Pentair Water/Thrivent Financial & Delavan Darien High School", :website=>"http://www.frc1103.org", :informalname=>"Frankenbots"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1104", :city=>"Axtell", :teamnumber=>"1104", :country=>"", :state=>" KS", :rookieyear=>"2003", :robotname=>"", :name=>"", :website=>"http://team1104.ozautomation.com/", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1106", :city=>"Mayville, ND", :teamnumber=>"1106", :country=>"", :state=>"", :rookieyear=>"2003", :robotname=>"", :name=>"North Dakota Space Grant Consortium/NASA & May-Port C.G. High School", :website=>"", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1108", :city=>"Paola", :teamnumber=>"1108", :country=>"USA", :state=>"KS", :rookieyear=>"2003", :robotname=>"", :name=>"City of Paola/Panther Robotics Booster Club/The Baehr Foundation/Briley Sonics & Paola High School", :website=>"http://www.pantherrobotics.com", :informalname=>"Panther Robotics"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1109", :city=>"Lively, ON", :teamnumber=>"1109", :country=>"", :state=>"", :rookieyear=>"2003", :robotname=>"", :name=>"Lively District Secondary School", :website=>"", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1110", :city=>"Palmdale", :teamnumber=>"1110", :country=>"", :state=>" CA", :rookieyear=>"2003", :robotname=>"Dr. Obot", :name=>"Lockheed Martin Aeronautics- Palmdale/Rancho Vista Development Corp/GIMJ Investment Group LLC-Wingstop Franchisees & Highland High School", :website=>"http://hhsrobotics.circuitrunners.com", :informalname=>"Palmdale"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1111", :city=>"Edgewater", :teamnumber=>"1111", :country=>"USA", :state=>"MD", :rookieyear=>"2003", :robotname=>"Hawk Bot II", :name=>"NASA Goddard Space Flight Center/McCarter Welding/BAE Systems/Global Science & Technology Inc./ARINC Technical Excellence Society/Master Graphic Printing Company/Zenoss/Lockheed Martin IS&S/Screen Designs, Inc./Marty's Bag Works & South River High School & AACPS S.T.E.M.-Advanced Studies Dept.", :website=>"http://robotics.southriverhigh.org", :informalname=>""The Power Hawks""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1112", :city=>"Toronto", :teamnumber=>"1112", :country=>"", :state=>" ON", :rookieyear=>"2003", :robotname=>"", :name=>"TDSB & Timothy Eaton BTI", :website=>"", :informalname=>"Toronto"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1113", :city=>"Philadelphia", :teamnumber=>"1113", :country=>"", :state=>" PA", :rookieyear=>"2003", :robotname=>"", :name=>"Temple Engineering & High School of Engineering and Science", :website=>"", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1114", :city=>"St. Catharines", :teamnumber=>"1114", :country=>"Canada", :state=>"ON", :rookieyear=>"2003", :robotname=>"Simbot Panthro", :name=>"General Motors - St. Catharines Powertrain & Governor Simcoe Secondary School", :website=>"http://www.simbotics.org", :informalname=>"Simbotics"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1115", :city=>"Santa Monica, CA", :teamnumber=>"1115", :country=>"", :state=>"", :rookieyear=>"2003", :robotname=>"", :name=>"NASA", :website=>"", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1118", :city=>"Knoxville, TN", :teamnumber=>"1118", :country=>"", :state=>"", :rookieyear=>"2003", :robotname=>"", :name=>"The University of Tennessee/Kimberly-Clark Corp/Phelps Engineering Company Inc. & South-Doyle High", :website=>"http://imaging.utk.edu", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1120", :city=>"Milpitas", :teamnumber=>"1120", :country=>"USA", :state=>"CA", :rookieyear=>"2003", :robotname=>"", :name=>"FLEXTRONICS/NXP/City of Milpitas & Milpitas High School", :website=>"", :informalname=>"Milpitas Xtreme Robotics"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1122", :city=>"Cleveland, OH", :teamnumber=>"1122", :country=>"", :state=>"", :rookieyear=>"2003", :robotname=>"", :name=>"NASA Glenn Research Center/GE Consumer Products-Lighting/RTA", :website=>"http://none", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1123", :city=>"Burke", :teamnumber=>"1123", :country=>"USA", :state=>"VA", :rookieyear=>"2003", :robotname=>"Trident", :name=>"Booz Allen Hamilton/Decisive Analytics Corporation/IBM/Fairfax Christian Church & Autodidactic Intelligent Minors", :website=>"http://www.aim-robotics.org", :informalname=>"AIM Robotics"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1124", :city=>"Avon", :teamnumber=>"1124", :country=>"USA", :state=>"CT", :rookieyear=>"2003", :robotname=>"Lightning", :name=>"UTC Fire and Security & Avon High School", :website=>"http://www.uberbots.org", :informalname=>"ÜberBots"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1125", :city=>"San Diego, CA", :teamnumber=>"1125", :country=>"", :state=>"", :rookieyear=>"2003", :robotname=>"", :name=>"Northrop-Grumman & Rancho Bernardo High School", :website=>"http://powayusd.sdcoe.k12.ca.us/pusdrbhs/", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1126", :city=>"Webster", :teamnumber=>"1126", :country=>"USA", :state=>"NY", :rookieyear=>"2003", :robotname=>"", :name=>"Xerox Corporation & Webster High Schools", :website=>"http://www.gosparx.org", :informalname=>"SPARX"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1127", :city=>"Milton", :teamnumber=>"1127", :country=>"USA", :state=>"GA", :rookieyear=>"2003", :robotname=>"I'm Cute", :name=>"Women in Technology / Nypro / MB & R Engineering Inc. & Milton High School", :website=>"", :informalname=>"Lotus Robotics"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1129", :city=>"Montreal, QC", :teamnumber=>"1129", :country=>"", :state=>"", :rookieyear=>"2003", :robotname=>"", :name=>"CAE Inc & Rosemount Technology Centre", :website=>"http://www.geocities.com/rtcrobotproject/index.html", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1130", :city=>"Albany", :teamnumber=>"1130", :country=>"USA", :state=>"OR", :rookieyear=>"2003", :robotname=>"", :name=>"Boeing/Albany Schools Foundation/Ashbrooke Independent School & South Albany High School", :website=>"", :informalname=>"Phantoms"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1131", :city=>"Hagerstown, MD", :teamnumber=>"1131", :country=>"", :state=>"", :rookieyear=>"2003", :robotname=>"", :name=>"NASA/Mack Truck/Washington County Public Schools & Washington County Schools", :website=>"http://www.team1131.com", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1132", :city=>"Ashland", :teamnumber=>"1132", :country=>"", :state=>" VA", :rookieyear=>"2003", :robotname=>"", :name=>"MiniVan, LLC & RAPTAR", :website=>"http://www.raptar.net", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1133", :city=>"Reno, NV", :teamnumber=>"1133", :country=>"", :state=>"", :rookieyear=>"2003", :robotname=>"", :name=>"University of Nevada, Reno", :website=>"", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1135", :city=>"Cerritos", :teamnumber=>"1135", :country=>"", :state=>" CA", :rookieyear=>"2003", :robotname=>"", :name=>"", :website=>"http://home.earthlink.net/~whsrobotics/", :informalname=>"Schmoebotics"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1136", :city=>"Spring Valley, CA", :teamnumber=>"1136", :country=>"", :state=>"", :rookieyear=>"2003", :robotname=>"", :name=>"NASA", :website=>"http://mt.miguelrobotics.8m.com", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1137", :city=>"Mathews", :teamnumber=>"1137", :country=>"USA", :state=>"VA", :rookieyear=>"2003", :robotname=>"", :name=>"Mathews High School", :website=>"http://moodle.mathews.k12.va.us/robotics", :informalname=>"Rocket Sauce"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1138", :city=>"West Hills", :teamnumber=>"1138", :country=>"USA", :state=>"CA", :rookieyear=>"2003", :robotname=>"", :name=>"Boeing/Tyco Electronics/Nexan/MBDA Missile Systems/Lowery Digital/Frazier Aviation/Northrop Grumman/C C Marine Services/Jostens/Xerox Corporation & Chaminade College Preparatory", :website=>"http://www.eagleengineering.org", :informalname=>"Eagle Engineering"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1139", :city=>"Chamblee", :teamnumber=>"1139", :country=>"", :state=>" GA", :rookieyear=>"2003", :robotname=>"", :name=>"Chamblee High School", :website=>"http://geargrinders.net", :informalname=>"Chamblee"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1140", :city=>"Holly", :teamnumber=>"1140", :country=>"", :state=>" MI", :rookieyear=>"2003", :robotname=>"", :name=>"Magna Donnelly Electronics & Holly High School", :website=>"http://hollyareaschools.com/hhs/academics/robotics/index.html", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1141", :city=>"Peterborough", :teamnumber=>"1141", :country=>"Canada", :state=>"ON", :rookieyear=>"2003", :robotname=>"", :name=>"G.E. Volunteers & Thomas A. Stewart High School", :website=>"http://www.tasrobotics.com", :informalname=>"TAS Megawatts"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1143", :city=>"Clarks Summit", :teamnumber=>"1143", :country=>"USA", :state=>"PA", :rookieyear=>"2003", :robotname=>"", :name=>"Lockheed Martin/One Point Inc. & Abington Heights High School", :website=>"http://www.cruzincomets.com", :informalname=>"Cruzin' Comets"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1144", :city=>"San Lorenzo", :teamnumber=>"1144", :country=>"USA", :state=>"PR", :rookieyear=>"2003", :robotname=>"Coquitrón Synergy", :name=>"Ethicon LLC & Mar_Atilde;_shy;a Cruz Buitrago High School & Jos_Atilde;_copy; Campeche High School & A.C.I.S. High School & St. Mary's High School & Notre Dame High School & Cristo de los Milagros Academy High School", :website=>"http://www.coquitron.com", :informalname=>"Coquitron"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1146", :city=>"Labrador City, NF", :teamnumber=>"1146", :country=>"", :state=>"", :rookieyear=>"2003", :robotname=>"", :name=>"Newfoundland & Labrador Hydro/IOC/Hodge Brothers/Wabush Mines/P&H/Town Wabush/Lab Glass & Alumium/Saan/Mother Woods/Scotia Bank/Fitz's Enterprizes/CWD/Office Works/Budget/CIBC/HJ O'Connell/Carol Auto/Town of Lab City & Menihek High School", :website=>"http://www.menihekhigh.k12.nf.ca", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1147", :city=>"Elk Grove", :teamnumber=>"1147", :country=>"USA", :state=>"CA", :rookieyear=>"2003", :robotname=>"Atlas", :name=>"BAE Systems/Optimist Club/thermogenesis & Elk Grove High School", :website=>"http://www.freewebs.com/eghsrobotics/", :informalname=>"The Herdinators"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1148", :city=>"Studio City", :teamnumber=>"1148", :country=>"USA", :state=>"CA", :rookieyear=>"2003", :robotname=>"", :name=>"Harvard-Westlake School", :website=>"http://www.hw.com", :informalname=>"H-W"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1149", :city=>"Thousand Oaks, CA", :teamnumber=>"1149", :country=>"", :state=>"", :rookieyear=>"2003", :robotname=>"", :name=>"Thousand Oaks High School", :website=>"", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1151", :city=>"San Pablo, CA", :teamnumber=>"1151", :country=>"", :state=>"", :rookieyear=>"2003", :robotname=>"", :name=>"Honda of El Cerrito/Tap Plastics/TCI Aluminum North/The Ed Fund/Contra Costa College & Middle College High School", :website=>"http://www.contracosta.edu/mchs/robotics/", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1152", :city=>"Hyde Park", :teamnumber=>"1152", :country=>"", :state=>" MA", :rookieyear=>"2003", :robotname=>"", :name=>"Olin College & Community Academy of Science and Health & The Engineering School & Social Justice Academy", :website=>"", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1153", :city=>"Walpole", :teamnumber=>"1153", :country=>"USA", :state=>"MA", :rookieyear=>"2003", :robotname=>"The MinuteMan", :name=>"Analog Devices & Walpole High School Robotics Team", :website=>"http://www.walpolerobotics.org/", :informalname=>"Robo-Rebels"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1155", :city=>"Bronx", :teamnumber=>"1155", :country=>"USA", :state=>"NY", :rookieyear=>"2003", :robotname=>"Colbertimus Prime", :name=>"The Hennessy Family Foundation/The Alumni Association of The Bronx High School of Science/ConEdison/Kepco Inc./Parent Association of The Bronx High School of Science/Providge Consulting/The Ackman Family Foundation/Snapple & The Bronx High School of Science", :website=>"http://www.bxsciborgs.com", :informalname=>"SciBorgs"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1156", :city=>"Novo Hamburgo", :teamnumber=>"1156", :country=>"Brazil", :state=>"RS", :rookieyear=>"2003", :robotname=>"", :name=>"Marista Pio XII High School", :website=>"http://www.undercontrol.com.br", :informalname=>"Under Control"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1157", :city=>"Boulder", :teamnumber=>"1157", :country=>"USA", :state=>"CO", :rookieyear=>"2003", :robotname=>"", :name=>"Comcast/BAE Systems/Ball Aerospace & Boulder High School", :website=>"http://www.landsharkrobotics.org", :informalname=>"Landsharks"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1158", :city=>"Collbran", :teamnumber=>"1158", :country=>"USA", :state=>"CO", :rookieyear=>"2003", :robotname=>"Gove 7", :name=>"NASA/Collbran Job Corps Grand Mesa/Bureau of Reclamation/Ametek/Department of Labor/Daniels Foundation/National Job Corps/EnCana Oil & Gas/Western Colorado Community Foundation/Williams Energy/Graham Foundation/Bacon Family Foundation/Rocky Mountain Electric Motors/Wal*Mart/Hilltop/Palisade Bank & Collbran Job Corps Grand Mesa High School", :website=>"http://www.eaglecorps.ws", :informalname=>"The Corps"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1159", :city=>"Alhambra", :teamnumber=>"1159", :country=>"USA", :state=>"CA", :rookieyear=>"2003", :robotname=>"Tigerbot", :name=>"Boeing/Galvanix/Western Union/Northrop Grumman/Macy's Foundation & Ramona Convent Secondary School", :website=>"http://ramonarampage.org", :informalname=>"Ramona Rampage"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1160", :city=>"San Marino", :teamnumber=>"1160", :country=>"USA", :state=>"CA", :rookieyear=>"2003", :robotname=>"Firebird", :name=>"NASA/JPL & San Marino High School", :website=>"http://team1160.info", :informalname=>"Firebird Robotics"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1161", :city=>",", :teamnumber=>"1161", :country=>"", :state=>"", :rookieyear=>"2003", :robotname=>"", :name=>"Tech Boston Academy", :website=>"", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1162", :city=>"Canutillo, TX", :teamnumber=>"1162", :country=>"", :state=>"", :rookieyear=>"2003", :robotname=>"", :name=>"NASA White Sands Test Facility & Canutillo High / NMSU", :website=>"http://hs.canutillo.k12.tx.us/robotics/index.html", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1163", :city=>"Faulkton", :teamnumber=>"1163", :country=>"", :state=>" SD", :rookieyear=>"2003", :robotname=>"Hector V", :name=>"Johnson Controls/SDSGC & Faulkton Area HS", :website=>"http://nhm7792.k12.sd.us/", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1164", :city=>"Las Cruces", :teamnumber=>"1164", :country=>"USA", :state=>"NM", :rookieyear=>"2003", :robotname=>"", :name=>"NASA & Mayfield HS", :website=>"http://www.projectneo.net", :informalname=>"Project NEO"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1165", :city=>"Phoenix", :teamnumber=>"1165", :country=>"USA", :state=>"AZ", :rookieyear=>"2003", :robotname=>"", :name=>"Paradise Valley High School", :website=>"http://teamparadise1165.com", :informalname=>"Team Paradise"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1166", :city=>"Garden City, GA", :teamnumber=>"1166", :country=>"", :state=>"", :rookieyear=>"2003", :robotname=>"", :name=>"NASA/JCB Inc./US Army Corp of Engineers/Savannah Tech", :website=>"http://www.savannah.chatham.k12.ga.us/groves/HighLander%20Index.htm", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1167", :city=>"Savannah", :teamnumber=>"1167", :country=>"", :state=>" GA", :rookieyear=>"2003", :robotname=>"", :name=>"", :website=>"http://www.savannah.chatham.k12.ga.us/schools/wfhs/index.html", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1168", :city=>"Malvern", :teamnumber=>"1168", :country=>"USA", :state=>"PA", :rookieyear=>"2003", :robotname=>"FriarBot", :name=>"CTDI & Malvern Preparatory School & Villa Maria Academy", :website=>"http://www.friarbot.com", :informalname=>"Malvern Robotics"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1169", :city=>"Fairbanks, AK", :teamnumber=>"1169", :country=>"", :state=>"", :rookieyear=>"2003", :robotname=>"", :name=>"University of Alaska-Fairbanks/INRA/NASA/British Petroleum/Goldstream Lions/Met-Life/Gene's Crysler & West Valley High School", :website=>"http://www.geocities.com/kahoe1/indexdark.html", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1172", :city=>"Richmond", :teamnumber=>"1172", :country=>"", :state=>" VA", :rookieyear=>"2003", :robotname=>"", :name=>"SMC Corporation & Richmond Technical Center", :website=>"", :informalname=>"We Tek Too"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1177", :city=>"Stone Mountain", :teamnumber=>"1177", :country=>"", :state=>" GA", :rookieyear=>"2003", :robotname=>"", :name=>"", :website=>"http://www.mechajagrobotics.org", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1178", :city=>"St. Louis", :teamnumber=>"1178", :country=>"USA", :state=>"MO", :rookieyear=>"2003", :robotname=>"", :name=>"Boeing & DeSmet Jesuit High School & John F. Kennedy Catholic High School", :website=>"", :informalname=>"D.R.T."}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1180", :city=>"Thunderbolt", :teamnumber=>"1180", :country=>"", :state=>" GA", :rookieyear=>"2003", :robotname=>"", :name=>"Gulfstream Aerospace Corporation/Motion Industries & Sol C Johnson High School", :website=>"http://www.smashers.org/PostNuke-0.750/html/index.php", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1181", :city=>"Gilbert, AZ", :teamnumber=>"1181", :country=>"", :state=>"", :rookieyear=>"2003", :robotname=>"", :name=>"Mesquite High School", :website=>"", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1182", :city=>"Manchester", :teamnumber=>"1182", :country=>"USA", :state=>"MO", :rookieyear=>"2003", :robotname=>"Wompus", :name=>"Boeing/Heat Transfer Systems/Pfizer Inc./AFFECT/Rotary International/Festo Corporation/EPIC Systems Inc./Dobbs Tire and Auto Centers/Compear Design/Electronic Support Systems/Labview/GRAYBAR & Parkway South High School", :website=>"", :informalname=>"Patriots"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1183", :city=>"Suwanee", :teamnumber=>"1183", :country=>"", :state=>" GA", :rookieyear=>"2003", :robotname=>"Tsar Ivan II", :name=>"Collins Hill High School", :website=>"", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1184", :city=>"Bel Air", :teamnumber=>"1184", :country=>"", :state=>" MD", :rookieyear=>"2003", :robotname=>"", :name=>"DeWALT/JE JACOBS/Army Research Laboratory & Harford Technical High School", :website=>"http://www.cobrarobotics.com", :informalname=>"Bel Air"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1185", :city=>"Pittsburgh", :teamnumber=>"1185", :country=>"", :state=>" PA", :rookieyear=>"2003", :robotname=>"", :name=>"", :website=>"http://www.rec.ri.cmu.edu/education/xbots/index.html", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1186", :city=>",", :teamnumber=>"1186", :country=>"", :state=>"", :rookieyear=>"2003", :robotname=>"", :name=>"", :website=>"", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1187", :city=>"Newark", :teamnumber=>"1187", :country=>"", :state=>" NJ", :rookieyear=>"2003", :robotname=>"", :name=>"Mercedes Benz/NJIT & Newark Public Shcools & University High School", :website=>"http://www.geocities.com/firebird_1187", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1188", :city=>"Royal Oak", :teamnumber=>"1188", :country=>"USA", :state=>"MI", :rookieyear=>"2003", :robotname=>"Crewz Control", :name=>"Hitachi Automotive & Hitachi-Royal Oak High School", :website=>"", :informalname=>"OAKTOWN CREWZ"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1189", :city=>"Grosse Pointe", :teamnumber=>"1189", :country=>"USA", :state=>"MI", :rookieyear=>"2003", :robotname=>"", :name=>"General Motors & Grosse Pointe Public Schools", :website=>"http://gpgearheads.org", :informalname=>"The Gearheads"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1190", :city=>"Aurora", :teamnumber=>"1190", :country=>"", :state=>" CO", :rookieyear=>"2003", :robotname=>"", :name=>"Overland High School", :website=>"http://www.anonobots-1190.com", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1191", :city=>"Pittsburgh, PA", :teamnumber=>"1191", :country=>"", :state=>"", :rookieyear=>"2003", :robotname=>"", :name=>"Keystone Oaks High School", :website=>"http://www.kosd.org/FIRST", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1195", :city=>"Seat Pleasant", :teamnumber=>"1195", :country=>"USA", :state=>"MD", :rookieyear=>"2003", :robotname=>"HAVOC !!", :name=>"Prince Georges County, MD/BAE SYSTEMS/Navy/Booz Allen Hamilton/Bowie High School/Patriots Technology Training Center/Patriots Technology Training Center & Bowie High School", :website=>"http://www.patriots-ttc.org", :informalname=>"New Age Chaos !!"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1197", :city=>"Torrance", :teamnumber=>"1197", :country=>"USA", :state=>"CA", :rookieyear=>"2003", :robotname=>"Tormentor", :name=>"Boeing/Raytheon/Moog Aircraft Group/El Camino College/Northrop Grumman/National Technical Systems/Praxair & South High School & North High School & West High School & Torrance High School", :website=>"http://www.torbots.com", :informalname=>"TorBots"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1199", :city=>",", :teamnumber=>"1199", :country=>"", :state=>"", :rookieyear=>"2003", :robotname=>"", :name=>"", :website=>"", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1200", :city=>"New Stanton, PA", :teamnumber=>"1200", :country=>"", :state=>"", :rookieyear=>"2003", :robotname=>"", :name=>"Central Westmoreland CTC", :website=>"", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1201", :city=>"Aberdeen, MS", :teamnumber=>"1201", :country=>"", :state=>"", :rookieyear=>"2003", :robotname=>"", :name=>"NASA Stennis Space Center/Southern Tooling and Machine Works & Monroe County Vocational Center", :website=>"http://www.csimonroe.com/", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1202", :city=>"Sidman, PA", :teamnumber=>"1202", :country=>"", :state=>"", :rookieyear=>"2003", :robotname=>"", :name=>"CTC Foundation/Walmart, Galleria/ToadNet Inc. & Forest Hills High School", :website=>"http://www.fhsd.k12.pa.us/clubs/firstrobotics/index.htm", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1203", :city=>"West Babylon", :teamnumber=>"1203", :country=>"USA", :state=>"NY", :rookieyear=>"2003", :robotname=>"", :name=>"West Babylon School District", :website=>"http://www.wbrobotics.com", :informalname=>"PANDEMONIUM"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1204", :city=>"Lakewood, OH", :teamnumber=>"1204", :country=>"", :state=>"", :rookieyear=>"2003", :robotname=>"", :name=>"NASA & St Edward High School", :website=>"", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1205", :city=>"Bruni", :teamnumber=>"1205", :country=>"", :state=>" TX", :rookieyear=>"2003", :robotname=>"", :name=>"AEP/FIRST Robotics/ARC Specialties/Houston Robotics/ESAB Cutting and Welding/Tymetal & Bruni High School Robotics", :website=>"http://classroom.webb.esc1.net/webs/bhs/bhs_robotics.htm", :informalname=>"Bruni"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1206", :city=>"Fairview Park, OH", :teamnumber=>"1206", :country=>"", :state=>"", :rookieyear=>"2003", :robotname=>"", :name=>"NASA Glenn Research Center/Battelle & Fairview High School", :website=>"http://www.wrenchwarriors.cjb.net", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1208", :city=>"O'Fallon", :teamnumber=>"1208", :country=>"USA", :state=>"IL", :rookieyear=>"2003", :robotname=>"Jaws", :name=>"Boeing & O'Fallon High School", :website=>"http://www.team1208.org/", :informalname=>"Metool Brigade"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1209", :city=>"Tulsa", :teamnumber=>"1209", :country=>"USA", :state=>"OK", :rookieyear=>"2003", :robotname=>"Booker VII", :name=>"AEP/University of Tulsa/Booker T. Washington Foundation for Academic Excellence & Booker T. Washington High School", :website=>"http://www.ens.utulsa.edu/FIRST/BTW08/", :informalname=>"Robo Hornets"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1210", :city=>"St. Louis, MO", :teamnumber=>"1210", :country=>"", :state=>"", :rookieyear=>"2003", :robotname=>"", :name=>"Optimist International/St. Louis Junior Academy of Science _quot;Science Center_quot;", :website=>"", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1211", :city=>"Brooklyn", :teamnumber=>"1211", :country=>"USA", :state=>"NY", :rookieyear=>"2003", :robotname=>"Deus Ex Machina", :name=>"Rajswasser-Flaherty Family/Bezo Family Foundation & Automotive High School YABC & Friends of Automotive High School", :website=>"http://www.shof515.com/autohs/", :informalname=>"Robotnics"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1212", :city=>"Chandler", :teamnumber=>"1212", :country=>"USA", :state=>"AZ", :rookieyear=>"2003", :robotname=>"Dr. Octabot", :name=>"Boeing/Modern Industries & Seton Catholic", :website=>"http://1212robotics.com", :informalname=>"Sentinels"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1213", :city=>"Beverly Hills", :teamnumber=>"1213", :country=>"USA", :state=>"MI", :rookieyear=>"2003", :robotname=>"", :name=>"US ARMY TARDEC/NPCrobotics.com & Birmingham Groves ", :website=>"", :informalname=>"GROVES"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1214", :city=>"Houston", :teamnumber=>"1214", :country=>"", :state=>" TX", :rookieyear=>"2003", :robotname=>"", :name=>"", :website=>"http://www.cstem.com", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1215", :city=>"Washington, MO", :teamnumber=>"1215", :country=>"", :state=>"", :rookieyear=>"2003", :robotname=>"", :name=>"NASA/East Central Machine Tool Consortium", :website=>"http://'[email protected]", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1216", :city=>"Oak Park", :teamnumber=>"1216", :country=>"USA", :state=>"MI", :rookieyear=>"2003", :robotname=>"Knightmare", :name=>"BAE Systems/KUKA & Oak Park High School", :website=>"http://www.team1216.com", :informalname=>"Knights"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1218", :city=>"Philadelphia", :teamnumber=>"1218", :country=>"USA", :state=>"PA", :rookieyear=>"2003", :robotname=>"The Tasmanian Devil (Taz)", :name=>"Vulcan Spring/Vectrix Corporation & Chestnut Hill Academy & Springside School", :website=>"http://www.Team1218.org", :informalname=>"Vulcan Robotics"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1219", :city=>"Toronto", :teamnumber=>"1219", :country=>"Canada", :state=>"ON", :rookieyear=>"2003", :robotname=>"", :name=>"Apotex Inc./Humber River Regional Hospital Foundation & Emery Collegiate Institute", :website=>"http://ironeagles.net", :informalname=>"Iron Eagles"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1221", :city=>"Mississauga", :teamnumber=>"1221", :country=>"Canada", :state=>"ON", :rookieyear=>"2003", :robotname=>"", :name=>"Honeywell Aerospace Canada & St. Martin's Secondary School", :website=>"", :informalname=>"Nerdbotics"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1222", :city=>"Richmond", :teamnumber=>"1222", :country=>"USA", :state=>"VA", :rookieyear=>"2003", :robotname=>"The Mighty Falconbot", :name=>"AMF Automation Technologies & Huguenot High School", :website=>"", :informalname=>"Falcons"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1223", :city=>"Mesa", :teamnumber=>"1223", :country=>"", :state=>" AZ", :rookieyear=>"2003", :robotname=>"", :name=>"", :website=>"http://www.evitengineering.com", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1224", :city=>"Bronx", :teamnumber=>"1224", :country=>"", :state=>" NY", :rookieyear=>"2003", :robotname=>"", :name=>"Credit Suisse /MTA/Verizon & St. Pius V High School", :website=>"http://Team 1224- The Pius Princesses", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1225", :city=>"Hendersonville", :teamnumber=>"1225", :country=>"USA", :state=>"NC", :rookieyear=>"2003", :robotname=>"LOUISE", :name=>"Shining Rock LLC & Henderson County Public Schools Robotics Team", :website=>"http://www.team1225.com", :informalname=>"AMPERAGE"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1227", :city=>"Grand Rapids", :teamnumber=>"1227", :country=>"", :state=>" MI", :rookieyear=>"2003", :robotname=>"", :name=>"ITT Technical Institute/Smiths Areospace & Forest Hills Public Schools & Northview Public Schools", :website=>"http://www.techno-gremlins.org", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1228", :city=>"Rahway", :teamnumber=>"1228", :country=>"USA", :state=>"NJ", :rookieyear=>"2003", :robotname=>"", :name=>"Infineum/A&M Industrial Supply/Merck & Rahway High School", :website=>"http://www.team1228.com", :informalname=>"RoboTribe"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1229", :city=>"Windsor, ON", :teamnumber=>"1229", :country=>"", :state=>"", :rookieyear=>"2003", :robotname=>"", :name=>"Anemia Institute for Research and Education/University of Windsor Faculty of Science/University of Windsor Faculty of Engineering/Centerline (Windsor) Ltd./Synexus Design Group Inc./Accucaps Industries Ltd./Moir KMJ Machinery Movers & Vincent Massey Second", :website=>"http://www.MasseyFirst.com", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1230", :city=>"Bronx", :teamnumber=>"1230", :country=>"USA", :state=>"NY", :rookieyear=>"2003", :robotname=>"Leo VII", :name=>"Verizon/Credit Suisse/Pershing Square/ADP & Herbert H. Lehman High School", :website=>"", :informalname=>"The Lehman Lionics"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1232", :city=>"Stratford", :teamnumber=>"1232", :country=>"", :state=>" ON", :rookieyear=>"2003", :robotname=>"", :name=>"", :website=>"http://www.ramsrobotics.com", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1236", :city=>"Danville", :teamnumber=>"1236", :country=>"USA", :state=>"VA", :rookieyear=>"2003", :robotname=>"", :name=>"Galileo Magnet High School", :website=>"http://web.dps.k12.va.us/galileo", :informalname=>"Phoenix Rising"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1237", :city=>"New York", :teamnumber=>"1237", :country=>"USA", :state=>"NY", :rookieyear=>"2003", :robotname=>"", :name=>"Verizon/Credit Suisse/Goldman Sachs/NYC Transit & University Neighborhood High School", :website=>"http://www.unhsrobotics.com", :informalname=>"Nerds With Attitude (NWA)"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1238", :city=>"New York, NY", :teamnumber=>"1238", :country=>"", :state=>"", :rookieyear=>"2003", :robotname=>"", :name=>"Verizon/Working in Support of Education & High School of Economics & Finance", :website=>"", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1239", :city=>"Olmsted Falls, OH", :teamnumber=>"1239", :country=>"", :state=>"", :rookieyear=>"2004", :robotname=>"", :name=>"NASA/VitaMix", :website=>"", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1240", :city=>"Manitowoc", :teamnumber=>"1240", :country=>"", :state=>" WI", :rookieyear=>"2004", :robotname=>"", :name=>"", :website=>"http://www.freewebs.com/lincolnrobotics", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1241", :city=>"Mississauga", :teamnumber=>"1241", :country=>"Canada", :state=>"ON", :rookieyear=>"2004", :robotname=>"Speedo-Demon Jr.", :name=>"General Motors of Canada & Rick Hansen Secondary School", :website=>"http://www.theory6.ca", :informalname=>"Theory6_Team Hansen Experience of Robotic Youth"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1242", :city=>"Plantation", :teamnumber=>"1242", :country=>"", :state=>" FL", :rookieyear=>"2004", :robotname=>"", :name=>"David Posnack Hebrew Day School", :website=>"http://www.dphdsrobotics.org/", :informalname=>"Team S.M.I.L.E.Y"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1243", :city=>"Swartz Creek", :teamnumber=>"1243", :country=>"USA", :state=>"MI", :rookieyear=>"2004", :robotname=>"Dragon-1", :name=>"General Motors Flint Truck Assembly / BAE Systems / EFC Systems Inc / PRP Inc. / Butterworth Industries / ITT Technical Institute & Swartz Creek High School", :website=>"", :informalname=>"Dragons"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1244", :city=>"Goderich", :teamnumber=>"1244", :country=>"Canada", :state=>"ON", :rookieyear=>"2004", :robotname=>"Ragnorak", :name=>"Volvo Motor Graders/Town of Goderich & GDCI", :website=>"http://www.vikingrobotics.ca", :informalname=>"Viking Robotics"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1245", :city=>"Louisville", :teamnumber=>"1245", :country=>"USA", :state=>"CO", :rookieyear=>"2004", :robotname=>"Throckmorton", :name=>"Marcia Brady Tucker Foundation/American Astronautical Society/Impact on Education/Ball Aerospace/Boulder Valley Credit Union/International Council on Systems Engineering/EvilRobotics.net & Monarch High School", :website=>"http://www.shazbots.org", :informalname=>"MoHi Shazbots"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1246", :city=>"Toronto", :teamnumber=>"1246", :country=>"Canada", :state=>"ON", :rookieyear=>"2004", :robotname=>"Lance", :name=>"Rotary Club of Agincourt/TDSB/RM Systems Integrators & Agincourt CI", :website=>"http://robotics.agincourtci.com/", :informalname=>"Agincourt Klockworxs"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1247", :city=>"North Sutton", :teamnumber=>"1247", :country=>"USA", :state=>"NH", :rookieyear=>"2004", :robotname=>"", :name=>"Labsphere, Inc. & Kearsarge Regional High School", :website=>"http://www.roksbot.com", :informalname=>"Robotics of Kearsarge (ROK)"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1248", :city=>"Middleburg Heights", :teamnumber=>"1248", :country=>"USA", :state=>"OH", :rookieyear=>"2004", :robotname=>"", :name=>"SMART Consortium & Midpark High School", :website=>"http://www.berea.k12.oh.us/476611512883611/site/default.asp", :informalname=>"MHS Robotics"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1249", :city=>"Delbarton", :teamnumber=>"1249", :country=>"USA", :state=>"WV", :rookieyear=>"2004", :robotname=>"The Rat", :name=>"NASA/American Electric Power/International Coal Group/West Virginia Department of Career and Technical Education/Mingo Career and Technical Center & Mingo County Schools", :website=>"http://www.mingorobotics.com", :informalname=>"Robo Rats"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1250", :city=>"Dearborn", :teamnumber=>"1250", :country=>"USA", :state=>"MI", :rookieyear=>"2004", :robotname=>"The Gator-B.O.T.T.", :name=>"Ford Motor Company/The Henry Ford & Henry Ford Academy", :website=>"http://www.team1250.org", :informalname=>"Gator-Bots"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1251", :city=>"Coconut Creek", :teamnumber=>"1251", :country=>"USA", :state=>"FL", :rookieyear=>"2004", :robotname=>"El Tigre Loco", :name=>"Sonny's Enterprises, The Car Wash Factory & Atlantic Technical Magnet High School", :website=>"http://www.techtigers.com", :informalname=>"TechTigers"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1252", :city=>"Appleton, WI", :teamnumber=>"1252", :country=>"", :state=>"", :rookieyear=>"2004", :robotname=>"", :name=>"Xavier High School", :website=>"http://www.xavier.k12.wi.us", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1253", :city=>"Taylors, SC", :teamnumber=>"1253", :country=>"", :state=>"", :rookieyear=>"2004", :robotname=>"", :name=>"Home-Schoolers Science & Technology Club", :website=>"http://www.pressoftlabs.com/USFIRST1253.HTM", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1254", :city=>"Lawrence", :teamnumber=>"1254", :country=>"USA", :state=>"MI", :rookieyear=>"2004", :robotname=>"Havoc", :name=>"Hinckley Research & Van Buren ISD", :website=>"", :informalname=>"Entropy"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1255", :city=>"Baytown", :teamnumber=>"1255", :country=>"USA", :state=>"TX", :rookieyear=>"2004", :robotname=>"Blarglebot", :name=>"ExxonMobil Chemical Company & Goose Creek CISD", :website=>"http://www.blarglefish.com", :informalname=>"Blarglefish"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1256", :city=>"Howell", :teamnumber=>"1256", :country=>"", :state=>" MI", :rookieyear=>"2004", :robotname=>"", :name=>"", :website=>"http://http:/www.hhsengineering.com", :informalname=>"Howell"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1257", :city=>"Scotch Plains", :teamnumber=>"1257", :country=>"USA", :state=>"NJ", :rookieyear=>"2004", :robotname=>"", :name=>"NASA & Union County Vocational Tech Schools", :website=>"", :informalname=>"Parallel Universe"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1258", :city=>"Seattle", :teamnumber=>"1258", :country=>"USA", :state=>"WA", :rookieyear=>"2004", :robotname=>"Rock Crusher", :name=>"Boeing/Ryerson & Seattle Lutheran High School", :website=>"http://www.seattlelutheran.org/events/robotics/robotics.html", :informalname=>"Saints Robotics"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1259", :city=>"Pewaukee", :teamnumber=>"1259", :country=>"USA", :state=>"WI", :rookieyear=>"2004", :robotname=>"Black Magic", :name=>"GE Volunteers/Marquette University College of Engineering/Tamerack Petroleum Inc. & Pewaukee High School", :website=>"http://www.team1259.org", :informalname=>"Paradigm Shift"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1260", :city=>"Mississauga", :teamnumber=>"1260", :country=>"", :state=>" ON", :rookieyear=>"2004", :robotname=>"", :name=>"", :website=>"http://www.cprobotics.com/", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1261", :city=>"Suwanee", :teamnumber=>"1261", :country=>"USA", :state=>"GA", :rookieyear=>"2004", :robotname=>"Long Shot", :name=>"The Motorola Foundation & Peachtree Ridge High School", :website=>"http://www.prhsrobotics.com", :informalname=>"RoboLions"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1262", :city=>"Martinsville", :teamnumber=>"1262", :country=>"USA", :state=>"VA", :rookieyear=>"2004", :robotname=>"STAGS", :name=>"Patrick Henry Community College/American Electric Power/Bassett Furniture, Inc./Harvest Foundation/Virginia Blower Co./Hooker Furniture Corporation/CPFilms, Inc & Piedmont Governor's School for Mathematics, Science and Technology", :website=>"http://www.team1262.net", :informalname=>" the STAGS"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1263", :city=>"Decatur", :teamnumber=>"1263", :country=>"", :state=>" AL", :rookieyear=>"2004", :robotname=>"", :name=>"", :website=>"http://www.ahsrobotics.org", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1264", :city=>"Mississauga, ON", :teamnumber=>"1264", :country=>"", :state=>"", :rookieyear=>"2004", :robotname=>"", :name=>"The Woodlands RoboRams", :website=>"http://www.roborams.tk", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1265", :city=>"Milwaukee, WI", :teamnumber=>"1265", :country=>"", :state=>"", :rookieyear=>"2004", :robotname=>"", :name=>"MPS #2", :website=>"", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1266", :city=>"San Diego", :teamnumber=>"1266", :country=>"USA", :state=>"CA", :rookieyear=>"2004", :robotname=>"Quacker", :name=>"Motorola / Hamilton-Sundstrand / Linda Lee / Justin Lee / Rob Healey / Issa Family Foundation / Aaron Rollison Memorial Fund / Elite Realty Inc / Qualcomm / San Diego College, Career & Technical Education & Madison High School Devil Duckies", :website=>"http://madison.sandiegorobotics.com/mhsran/", :informalname=>"The Devil Duckies"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1267", :city=>"Milwaukee, WI", :teamnumber=>"1267", :country=>"", :state=>"", :rookieyear=>"2004", :robotname=>"", :name=>"GE Medical Systems & Rufus King High School", :website=>"", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1268", :city=>"Milwaukee", :teamnumber=>"1268", :country=>"USA", :state=>"WI", :rookieyear=>"2004", :robotname=>"GiggaBot", :name=>"GE Volunteers / Rockwell Automation / Milwaukee Area Technical College & Washington High School", :website=>"http://www.whs.edu/academics/robotics1268/index.html", :informalname=>"Purgolder Robotics"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1269", :city=>"Cleveland, OH", :teamnumber=>"1269", :country=>"", :state=>"", :rookieyear=>"2004", :robotname=>"", :name=>"Cuyahoga Community College/Youth Technology Academy & Cleveland Municipal School District", :website=>"", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1270", :city=>"Cleveland", :teamnumber=>"1270", :country=>"USA", :state=>"OH", :rookieyear=>"2004", :robotname=>"Red Dragon", :name=>"NASA Glenn Research Center/Youth Technology Academy of Cuyahoga Community College/Cuyahoga County Workforce Development Dept/Cleveland TechWorks & Cleveland Metropolitan School District", :website=>"http://www.ytaccc.org", :informalname=>"Red Dragons"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1271", :city=>"Cleveland, OH", :teamnumber=>"1271", :country=>"", :state=>"", :rookieyear=>"2004", :robotname=>"", :name=>"Cuyahoga Community College/Youth Technology Academy & Cleveland Municipal School District", :website=>"", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1272", :city=>"Bloomington", :teamnumber=>"1272", :country=>"", :state=>" IN", :rookieyear=>"2004", :robotname=>"", :name=>"Sabin Corporation/Cook Incorporated & Hoosier Hills Career Center", :website=>"http://www.bloomingtonrobotics.com/", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1273", :city=>"Cleveland, OH", :teamnumber=>"1273", :country=>"", :state=>"", :rookieyear=>"2004", :robotname=>"", :name=>"Cuyahoga Community College/Youth Technology Academy & Cleveland Municipal School District", :website=>"", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1274", :city=>"Berea", :teamnumber=>"1274", :country=>"USA", :state=>"OH", :rookieyear=>"2004", :robotname=>"Sheila", :name=>"SMART Consortium & Berea High School", :website=>"http://www.bhsrobotics.com", :informalname=>"ß!-!$ ®0ß071¢$"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1275", :city=>"Toronto", :teamnumber=>"1275", :country=>"", :state=>" ON", :rookieyear=>"2004", :robotname=>"", :name=>"", :website=>"http://www.havergalrobotics.on.ca", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1276", :city=>"Rockland", :teamnumber=>"1276", :country=>"USA", :state=>"ME", :rookieyear=>"2004", :robotname=>"Joe", :name=>"Midcoast School of Technology", :website=>"http://www.mcstrobotics.org", :informalname=>"Kaizen Blitz"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1277", :city=>"Groton", :teamnumber=>"1277", :country=>"USA", :state=>"MA", :rookieyear=>"2004", :robotname=>"", :name=>"Brooks Automation, Inc./Raytheon/Symphony Service Corporation/Groton Dunstable Education Foundation/Groton-Dunstable Science, Technology, Engineering and Math/BAE Systems & Groton-Dunstable Regional High School", :website=>"http://www.team1277.com/Team.html", :informalname=>"The 1277 Musketeers"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1278", :city=>"North Royalton", :teamnumber=>"1278", :country=>"", :state=>" OH", :rookieyear=>"2004", :robotname=>"", :name=>"Lear Rome/Rockwell & North Royalton High School", :website=>"http://team1278.org", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1279", :city=>"Somerville", :teamnumber=>"1279", :country=>"USA", :state=>"NJ", :rookieyear=>"2004", :robotname=>"Murdock", :name=>"Bound Brook Moose Lodge #988 & Immaculata High School", :website=>"http://www.coldfusion1279.com", :informalname=>"Cold Fusion"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1280", :city=>"Danville", :teamnumber=>"1280", :country=>"USA", :state=>"CA", :rookieyear=>"2004", :robotname=>"C-Biscuit", :name=>"EMC Corporation/Intuitive Surgical & San Ramon Valley High School", :website=>"http://www.srvhsrobotics.org", :informalname=>"Ragin' C- Biscuits of San Ramon Valley High"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1281", :city=>"Richmond Hill", :teamnumber=>"1281", :country=>"", :state=>" ON", :rookieyear=>"2004", :robotname=>"", :name=>"Alexander Mackenzie High School & York Region District School Board", :website=>"http://www.mustangrobotics.ca", :informalname=>"Mustang Robotics"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1282", :city=>"Wallaceburg, ON", :teamnumber=>"1282", :country=>"", :state=>"", :rookieyear=>"2004", :robotname=>"", :name=>"W.D.S.S", :website=>"", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1283", :city=>"Tucson, AZ", :teamnumber=>"1283", :country=>"", :state=>"", :rookieyear=>"2004", :robotname=>"", :name=>"Accelerated Learning Laboratory", :website=>"", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1284", :city=>"Guntersville", :teamnumber=>"1284", :country=>"USA", :state=>"AL", :rookieyear=>"2004", :robotname=>"Atticus", :name=>"Guntersville High School Robotics", :website=>"http://robotics.guntersville-high.com", :informalname=>"DART"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1286", :city=>"Royal Oak", :teamnumber=>"1286", :country=>"", :state=>" MI", :rookieyear=>"2004", :robotname=>"", :name=>"Cimatron/Faurecia Interior Systems - North America Division/HITACHI Foundation/Mayo Welding & Oakland School Technical Campus Southeast", :website=>"http://oakland.k12.mi.us/robotics1286", :informalname=>"Royal Oak"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1287", :city=>"Myrtle Beach", :teamnumber=>"1287", :country=>"USA", :state=>"SC", :rookieyear=>"2004", :robotname=>"", :name=>"Santee Cooper & Academy of Arts, Science & Technology", :website=>"", :informalname=>"Aluminum Assault"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1288", :city=>"Saint Charles", :teamnumber=>"1288", :country=>"USA", :state=>"MO", :rookieyear=>"2004", :robotname=>"", :name=>"Boeing/Boeing Employees Community Fund & Francis Howell School District", :website=>"http://www.ravenrobotics.net", :informalname=>"RAVEN Robotics"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1289", :city=>"Lawrence", :teamnumber=>"1289", :country=>"USA", :state=>"MA", :rookieyear=>"2004", :robotname=>"Blaster", :name=>"Lawrence High School", :website=>"http://www.wix.com/meny714/gearheadz", :informalname=>"Gearheadz"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1290", :city=>"Chandler", :teamnumber=>"1290", :country=>"USA", :state=>"AZ", :rookieyear=>"2004", :robotname=>"", :name=>"Si Se Puede & Chandler High School", :website=>"http://chssisepuederobotics.googlepages.com/", :informalname=>"Si Se Puede"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1291", :city=>"Toronto, ON", :teamnumber=>"1291", :country=>"", :state=>"", :rookieyear=>"2004", :robotname=>"", :name=>"St. Clement's School Foundation", :website=>"http://www.scs.on.ca/robotics", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1292", :city=>"Rothesay", :teamnumber=>"1292", :country=>"", :state=>" NB", :rookieyear=>"2004", :robotname=>"", :name=>"", :website=>"", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1293", :city=>"Columbia", :teamnumber=>"1293", :country=>"USA", :state=>"SC", :rookieyear=>"2004", :robotname=>"Wyziwyg", :name=>"D5Robotics : School District Five of Lexington and Richland Counties & Irmo & Dutch Fork & Chapin", :website=>"http://d5robotics.org/", :informalname=>"D5"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1294", :city=>"Sammamish", :teamnumber=>"1294", :country=>"USA", :state=>"WA", :rookieyear=>"2004", :robotname=>"", :name=>"Boeing/OSPI/SAE NW Section & Eastlake High School Robotics & Lake Washington Foundation", :website=>"http://team1294.net", :informalname=>"Top Gun"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1295", :city=>"Toronto", :teamnumber=>"1295", :country=>"", :state=>" ON", :rookieyear=>"2004", :robotname=>"", :name=>"Albert & Tammy Latner Foundation/Hinds Family/Loewen & Partners/Pinetree Capital & Royal St. George's College", :website=>"http://robotics.rsgc.on.ca", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1296", :city=>"Rockwall", :teamnumber=>"1296", :country=>"USA", :state=>"TX", :rookieyear=>"2004", :robotname=>"Atlas", :name=>"Special Products and Manufacturing/The PTR Group/L-3 Communications, ComCept Division & Rockwall High School", :website=>"http://www.rockwallrobotics.com", :informalname=>"Full Metal Jackets"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1297", :city=>"Sylacauga, AL", :teamnumber=>"1297", :country=>"", :state=>"", :rookieyear=>"2004", :robotname=>"", :name=>"Comau Pico & Sylacauga High School", :website=>"", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1298", :city=>"Birmingham, AL", :teamnumber=>"1298", :country=>"", :state=>"", :rookieyear=>"2004", :robotname=>"", :name=>"Comau Pico & Shades Valley High School & Huffman High School", :website=>"http://www.jeffstateonline.com/first", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1299", :city=>"Jasper, GA", :teamnumber=>"1299", :country=>"", :state=>"", :rookieyear=>"2004", :robotname=>"", :name=>"NASA/Appalachian Technical College/Southern Polytechnic State Universtiy/Amicalola EMC/Royston LLC/Lexington Insulators", :website=>"http://www.phsdominators.com", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1300", :city=>"Oakville, ON", :teamnumber=>"1300", :country=>"", :state=>"", :rookieyear=>"2004", :robotname=>"", :name=>"Halton Catholic District School Board/Loyola School Council", :website=>"http://www.loyola.haltonrc.edu.on.ca/robotics/", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1301", :city=>"Seattle", :teamnumber=>"1301", :country=>"", :state=>" WA", :rookieyear=>"2004", :robotname=>"", :name=>"Bezos Family Foundation/Diggit, Inc. & Nathan Hale High School", :website=>"http://www.halerobotics.org", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1302", :city=>"Sparta", :teamnumber=>"1302", :country=>"USA", :state=>"NJ", :rookieyear=>"2004", :robotname=>"", :name=>"Thor Labs/BAE Systems/R.S. Phillips Steel/Hudson Farm Foundation/Picatinny Arsenal/High Point Solutions/TechFlex & Pope John XXIII Regional High School", :website=>"http://www.pjhsrobotics.org/", :informalname=>"Revolution Robotics"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1303", :city=>"Casper", :teamnumber=>"1303", :country=>"USA", :state=>"WY", :rookieyear=>"2004", :robotname=>"", :name=>"Casper College/Automation Electronics & NCSD", :website=>"http://www.wyohazardrobotics.org", :informalname=>"WYOHAZARD"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1304", :city=>"New Orleans", :teamnumber=>"1304", :country=>"USA", :state=>"LA", :rookieyear=>"2004", :robotname=>"Bruce", :name=>"Tulane University & New Orleans Charter Science and Mathematics High School", :website=>"http://1304nobotics.webs.com", :informalname=>"N.O. Botics"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1305", :city=>"North Bay", :teamnumber=>"1305", :country=>"Canada", :state=>"ON", :rookieyear=>"2004", :robotname=>"R2-T2", :name=>"Near North Student Robotics Initiative", :website=>"http://www.team1305.ca", :informalname=>"Ice Cubed"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1306", :city=>"Madison", :teamnumber=>"1306", :country=>"USA", :state=>"WI", :rookieyear=>"2004", :robotname=>"", :name=>"GE Volunteers / Isthmus Engineering & Manufacturing / Herzing College / UW Madison Society of Women Engineers / University of Wisconsin-Madison / Orbital Technologies / FFF & Madison Metropolitan School District high school", :website=>"http://www.badgerbots.org", :informalname=>"BadgerBOTS"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1307", :city=>"Dover", :teamnumber=>"1307", :country=>"USA", :state=>"NH", :rookieyear=>"2004", :robotname=>"", :name=>"Janco Electronics/FPL Energy/GE Volunteers & St. Thomas Aquinas High School", :website=>"", :informalname=>"Robosaints"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1308", :city=>"Cleveland", :teamnumber=>"1308", :country=>"USA", :state=>"OH", :rookieyear=>"2004", :robotname=>"", :name=>"Balance Product Development & St. Ignatius High School", :website=>"", :informalname=>"Wildcats"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1309", :city=>"Toronto, ON", :teamnumber=>"1309", :country=>"", :state=>"", :rookieyear=>"2004", :robotname=>"", :name=>"", :website=>"", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1310", :city=>"Toronto", :teamnumber=>"1310", :country=>"Canada", :state=>"ON", :rookieyear=>"2004", :robotname=>"Red Raven", :name=>"Thales Group/TDSB & Runnymede CI", :website=>"http://www.runnymedecollegiate.com/first", :informalname=>"RUNNYMEDE ROBOTICS"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1311", :city=>"Marietta", :teamnumber=>"1311", :country=>"USA", :state=>"GA", :rookieyear=>"2004", :robotname=>"", :name=>"NASA/GE Volunteers/Women In Technology/Enercon Services Inc./SRT-Nypro/AIAA (American Institute of Aeronautics and Astronautics/Cobb EMC/Arylessence/Johnnys Pizza/Georgia Tech Research Institute/HI Solutions & The Carlton J. Kell High School", :website=>"http://www.kellrobotics.org", :informalname=>"Longhorns"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1312", :city=>"Walkerton", :teamnumber=>"1312", :country=>"Canada", :state=>"ON", :rookieyear=>"2004", :robotname=>"Robotitron III", :name=>"Bruce Power,/Power Workers' Union & Sacred Heart High School", :website=>"http://www.team1312.org", :informalname=>"Syntax Error"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1313", :city=>"Albion, MI", :teamnumber=>"1313", :country=>"", :state=>"", :rookieyear=>"2004", :robotname=>"", :name=>"Albion Machine and Tool & Albion Senior High School", :website=>"http://www.freewebs.com/first1313/", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1314", :city=>",", :teamnumber=>"1314", :country=>"", :state=>"", :rookieyear=>"2004", :robotname=>"", :name=>"Covenant Christian School", :website=>"", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1315", :city=>"Pacific", :teamnumber=>"1315", :country=>"", :state=>" MO", :rookieyear=>"2004", :robotname=>"Sarah", :name=>"DaimlerChrysler St. Louis South Assembly Plant UAW Locals 100& 597/DaimlerChrysler Corporation Fund/Imperial Ornamental Metal/The Pillar Foundation/Tyco Corp. & Christian Home Educated Students of St. Louis", :website=>"http://www.roboknights.org", :informalname=>"Pacific"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1316", :city=>"Columbia, SC", :teamnumber=>"1316", :country=>"", :state=>"", :rookieyear=>"2004", :robotname=>"", :name=>"HEYWARD CAREER AND TECHNOLOGY CENTER & LOWER RICHLAND HIGH & COLUMBIA HIGH SCHOOL", :website=>"", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1317", :city=>"Columbus", :teamnumber=>"1317", :country=>"USA", :state=>"OH", :rookieyear=>"2004", :robotname=>"", :name=>"NASA Glen Research Center/AEP/The Ohio State University/Honda of America Manufacturing/Honda R & D/AT&T/BAE Systems & Educational Robotics of Central Ohio", :website=>"http://www.DFWeb.org", :informalname=>"Digital Fusion"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1318", :city=>"Issaquah", :teamnumber=>"1318", :country=>"USA", :state=>"WA", :rookieyear=>"2004", :robotname=>"The Auditor", :name=>"The Boeing Company/Issaquah Schools Foundation & Issaquah High School", :website=>"http://www.issaquahrobotics.org", :informalname=>"Issaquah Robotics Society"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1319", :city=>"Mauldin", :teamnumber=>"1319", :country=>"USA", :state=>"SC", :rookieyear=>"2004", :robotname=>"Orpheus", :name=>"ITT Technical Institute/AdvanceSC/Bosch Rexroth/GE/Merovan Office Center/Hendricks Fabrication & Mauldin High School & Greenville County Schools", :website=>"http://www.flash1319.com", :informalname=>"Flash"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1320", :city=>"St. Stephen", :teamnumber=>"1320", :country=>"", :state=>" SC", :rookieyear=>"2004", :robotname=>"", :name=>"Albany International/Gates Corporation & Timberland High School & Berkeley High School & Cross High School", :website=>"http://www.berkeley.k12.sc.us/high/ths/First%20Robotics/Website%204706/home.htm", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1321", :city=>"Winnsboro, SC", :teamnumber=>"1321", :country=>"", :state=>"", :rookieyear=>"2004", :robotname=>"", :name=>"Fairfield Central High School", :website=>"", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1322", :city=>"Fenton", :teamnumber=>"1322", :country=>"USA", :state=>"MI", :rookieyear=>"2004", :robotname=>"BOB", :name=>"GM / ITT Tecch / Weber Electric & G.R.A.Y.T. Leviathons", :website=>"http://www.team1322.org", :informalname=>"Genesee Robotics Area Youth Team (GRAYT)"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1323", :city=>"Madera", :teamnumber=>"1323", :country=>"USA", :state=>"CA", :rookieyear=>"2004", :robotname=>"ETR5", :name=>"Boeing / B-K Lighting / JBT FoodTech / GBS Hardware / Elk Ridge Almonds Inc. / Kiwanis Club & Madera High School", :website=>"http://www.team1323.com", :informalname=>"MadTown Robotics"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1324", :city=>"Sedona", :teamnumber=>"1324", :country=>"USA", :state=>"AZ", :rookieyear=>"2004", :robotname=>"", :name=>"Verde Valley Robotics, Inc./Combusion Dynamics & Sedona Red Rock High School & American Heritage Academy", :website=>"http://www.verdevalleyrobotics.org", :informalname=>"Sporks"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1325", :city=>"Mississauga", :teamnumber=>"1325", :country=>"Canada", :state=>"ON", :rookieyear=>"2004", :robotname=>"", :name=>"BRT Solutions/Norampac Incorporated/Promation Engineering Ltd./PTC Software/Sky Rocket Kids & Gordon Graydon Memorial SS", :website=>"http://inverseparadox.org/", :informalname=>"Inverse Paradox"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1326", :city=>"Houston", :teamnumber=>"1326", :country=>"", :state=>" TX", :rookieyear=>"2004", :robotname=>"", :name=>"FMC Technologies/Houston Robotics/Stress Engineering Services & Cypress Ridge High School", :website=>"http://www.cyridgerobotics.com", :informalname=>"Cy-Ridge Robotics"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1327", :city=>"South Bend", :teamnumber=>"1327", :country=>"USA", :state=>"IN", :rookieyear=>"2004", :robotname=>"", :name=>"CTS Corp / Mack Tool Engineering / AEP-American Electric Power / Indiana Department of Workforce Development / Notre Dame & South Bend School Corporation", :website=>"http://sbotz.org", :informalname=>"SBOTZ"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1328", :city=>"Gainesville, FL", :teamnumber=>"1328", :country=>"", :state=>"", :rookieyear=>"2004", :robotname=>"", :name=>"University of Florida & UF", :website=>"", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1329", :city=>"St. Louis", :teamnumber=>"1329", :country=>"USA", :state=>"MO", :rookieyear=>"2004", :robotname=>"", :name=>"Boeing & St. Louis Priory High School", :website=>"", :informalname=>"ROBOREBELS"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1330", :city=>"Toronto", :teamnumber=>"1330", :country=>"", :state=>" ON", :rookieyear=>"2004", :robotname=>"", :name=>"TDSB & Sir Robert L Borden Business & Technical Institute", :website=>"http://team1330.com", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1331", :city=>"Bloomington, IN", :teamnumber=>"1331", :country=>"", :state=>"", :rookieyear=>"2004", :robotname=>"", :name=>"NASA/Boston Scientific/Raymond Foundation/Wilson Tool & Engineering/MCCSC Foundation & Hoosier Hills Career Center", :website=>"http://www.hhills.mccsc.edu/web%20stuff/website.htm", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1332", :city=>"Collbran", :teamnumber=>"1332", :country=>"USA", :state=>"CO", :rookieyear=>"2004", :robotname=>"Spanky", :name=>"Capco & Plateau Valley High School", :website=>"http://www.plateauvalleyrobotics.org", :informalname=>"S.W.I.F.T."}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1333", :city=>"Mccormick, SC", :teamnumber=>"1333", :country=>"", :state=>"", :rookieyear=>"2004", :robotname=>"", :name=>"McCormick High School", :website=>"", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1334", :city=>"Oakville", :teamnumber=>"1334", :country=>"Canada", :state=>"ON", :rookieyear=>"2004", :robotname=>"", :name=>"Hatch / HDSB / Hepburn Engineering / North Star Technical / Optimist Club of Oakville / Dundee Wealth / Wainewright Consulting / Xerox Canada / Allied Innovations / Derek Blakely Wealth Management / Susan Diane Brown C.A. / Laker Energy Products / North Star Electric / Xiris Vision Systems & Oakville Trafalgar High School Red Devils", :website=>"http://www.othsrobotics.ca", :informalname=>"OTHS Red Devils"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1335", :city=>"Raymond", :teamnumber=>"1335", :country=>"", :state=>" NH", :rookieyear=>"2004", :robotname=>"", :name=>"Raymond High School", :website=>"http://www.team1335.org", :informalname=>"Raymond"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1336", :city=>"Lexington", :teamnumber=>"1336", :country=>"", :state=>" SC", :rookieyear=>"2004", :robotname=>"", :name=>"American Nuclear Society, Robotics and Remote Systems Division/Electric Motor and Repair, Inc./Richard's Construction Company/Gregory Williams, Attorney, LLC/The Drawing Board, Inc./International Paper Box Machine Co. & Lexington School District 1 & White Knoll High School", :website=>"http://www.lexington1.net/wkh/Robotics/index.htm", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1337", :city=>"Reken, NRW", :teamnumber=>"1337", :country=>"", :state=>"", :rookieyear=>"2004", :robotname=>"", :name=>"Gymnasium der Mariannhiller Missionare", :website=>"", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1338", :city=>"Aurora, CO", :teamnumber=>"1338", :country=>"", :state=>"", :rookieyear=>"2004", :robotname=>"", :name=>"Lockheed Martin/NASA/Ball Aerospace/Hewlett Packard/Information Handling Systems/Dillon Software/University of Denver/Lander Dental/General Electric Rail & Eaglecrest High School", :website=>"", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1339", :city=>"Denver", :teamnumber=>"1339", :country=>"USA", :state=>"CO", :rookieyear=>"2004", :robotname=>"The AngelBot", :name=>"Williams Engineering/Google & Denver Public Schools", :website=>"", :informalname=>"AngelBotics"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1340", :city=>"Queens", :teamnumber=>"1340", :country=>"USA", :state=>"NY", :rookieyear=>"2004", :robotname=>"Adrian", :name=>"Bezos Family Foundation / Jet Blue Airways & John Adams HS Robotics Team High School", :website=>"http://www.johnadamshs.org/ourpages/johnadamsrobotics/files/index.html", :informalname=>"Adams Robotics"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1341", :city=>"Sarasota", :teamnumber=>"1341", :country=>"USA", :state=>"FL", :rookieyear=>"2004", :robotname=>"", :name=>"Sun Hydraulics Corporation & Cardinal Mooney High School", :website=>"", :informalname=>"The Renegades"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1342", :city=>"Seattle, WA", :teamnumber=>"1342", :country=>"", :state=>"", :rookieyear=>"2004", :robotname=>"", :name=>"NASA & West Seattle High School", :website=>"http://www.lordofthebots.org", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1343", :city=>"Phoenix", :teamnumber=>"1343", :country=>"", :state=>" AZ", :rookieyear=>"2004", :robotname=>"", :name=>"Desert Vista Technology and Math Departments", :website=>"", :informalname=>"Phoenix"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1344", :city=>"Kamuela, HI", :teamnumber=>"1344", :country=>"", :state=>"", :rookieyear=>"2004", :robotname=>"", :name=>"Parker School", :website=>"", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1345", :city=>"Ft. Lauderdale", :teamnumber=>"1345", :country=>"USA", :state=>"FL", :rookieyear=>"2004", :robotname=>"V6", :name=>"DeVry University & Stranahan High School", :website=>"http://www.myschoolpages.com/schools/stranahanhs/magnet.cfm?subpage=489964", :informalname=>"Platinum Dragons"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1346", :city=>"Vancouver", :teamnumber=>"1346", :country=>"Canada", :state=>"BC", :rookieyear=>"2004", :robotname=>"", :name=>"General Motors Canada & David Thompson Secondary School", :website=>"http://www.trobotics.ca", :informalname=>"Trobotics"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1347", :city=>"Ottawa", :teamnumber=>"1347", :country=>"", :state=>" ON", :rookieyear=>"2004", :robotname=>"", :name=>"", :website=>"http://www.elmwoodedge.com/Robotics/Pages/pg_flashindex.html", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1348", :city=>"Denver", :teamnumber=>"1348", :country=>"USA", :state=>"CO", :rookieyear=>"2004", :robotname=>"", :name=>"Rogue Engineering/Lockheed Martin Space Systems/Aspenware Internet Solutions/ProtoTest & Denver Public Schools & J F. Kennedy High School", :website=>"http://www.KennedyRobotics.com", :informalname=>"Electric Anarchy"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1349", :city=>"Flandreau", :teamnumber=>"1349", :country=>"", :state=>" SD", :rookieyear=>"2004", :robotname=>"Injun-uity IV", :name=>"Flandreau Indian School", :website=>"", :informalname=>"Flandreau"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1350", :city=>"Providence", :teamnumber=>"1350", :country=>"USA", :state=>"RI", :rookieyear=>"2004", :robotname=>"Rambot", :name=>"Raytheon/Brown University & LaSalle Academy", :website=>"http://rambots.net", :informalname=>"The Rambots"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1351", :city=>"San Jose", :teamnumber=>"1351", :country=>"USA", :state=>"CA", :rookieyear=>"2004", :robotname=>"", :name=>"MCNC De Anza College & Archbishop Mitty High School", :website=>"http://www.amhsrobotics.com", :informalname=>"TKO"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1352", :city=>"Stratford, ON", :teamnumber=>"1352", :country=>"", :state=>"", :rookieyear=>"2004", :robotname=>"", :name=>"Novatronics", :website=>"", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1353", :city=>"Mississauga", :teamnumber=>"1353", :country=>"", :state=>" ON", :rookieyear=>"2004", :robotname=>"", :name=>"Atomic Energy of Canada & Clarkson High School & Lorne Park Secondary School", :website=>"http://www.lorneparkrobotics.com/", :informalname=>"Mississauga"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1354", :city=>"Los Angeles, CA", :teamnumber=>"1354", :country=>"", :state=>"", :rookieyear=>"2004", :robotname=>"", :name=>"New Roads", :website=>"", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1355", :city=>"Wingham", :teamnumber=>"1355", :country=>"", :state=>" ON", :rookieyear=>"2004", :robotname=>"", :name=>"Wescast & F.E. Madill Secondary School", :website=>"http://www.amdsb.ca/Madill/robotics/iron_stallions.html", :informalname=>"Wingham"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1356", :city=>"Tecumseh, ON", :teamnumber=>"1356", :country=>"", :state=>"", :rookieyear=>"2004", :robotname=>"", :name=>"", :website=>"http://www.www.com", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1357", :city=>"Loveland", :teamnumber=>"1357", :country=>"USA", :state=>"CO", :rookieyear=>"2004", :robotname=>"------", :name=>"SRT/Agilent Technologies, Inc./GE Volunteers/Kimble Precision, Inc./Spatial Corp. & Thompson Valley High School", :website=>"http://tvrobotics.googlepages.com", :informalname=>"High Voltage"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1358", :city=>"Levittown", :teamnumber=>"1358", :country=>"USA", :state=>"NY", :rookieyear=>"2004", :robotname=>"", :name=>"The Macarthur Generals", :website=>"http://www.levittownschools.com", :informalname=>"The Gerneral"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1359", :city=>"Lebanon", :teamnumber=>"1359", :country=>"USA", :state=>"OR", :rookieyear=>"2004", :robotname=>"Grog", :name=>"NASA/Concept Systems, Inc./IBEW Local 280/Albany Rotary Clubs/Covell Transport/ImTech, Inc./Optimal Controls & BSA Venture Crew 308 & Linn County Schools", :website=>"http://www.scalawags.org", :informalname=>"Scalawags"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1361", :city=>"Colorado Springs", :teamnumber=>"1361", :country=>"USA", :state=>"CO", :rookieyear=>"2004", :robotname=>"Mac", :name=>"Boeing/JCPenney After School Fund & Sierra High School Harrison District 2", :website=>"http://robotics.atspace.com", :informalname=>"Alien Nightmare Robotics"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1362", :city=>"Newark, NJ", :teamnumber=>"1362", :country=>"", :state=>"", :rookieyear=>"2004", :robotname=>"", :name=>"Weequahic High School & Technology High School", :website=>"", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1363", :city=>"Newark, NJ", :teamnumber=>"1363", :country=>"", :state=>"", :rookieyear=>"2004", :robotname=>"", :name=>"Malcolm X Shabazz HS & Technology High School", :website=>"", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1364", :city=>"Kennesaw, GA", :teamnumber=>"1364", :country=>"", :state=>"", :rookieyear=>"2004", :robotname=>"", :name=>"Ryobi/Marathon Ashland", :website=>"", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1365", :city=>"Chicago, IL", :teamnumber=>"1365", :country=>"", :state=>"", :rookieyear=>"2004", :robotname=>"", :name=>"Beauty Mark", :website=>"http://www.thesouthsidesurgeons.freeservers.com", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1366", :city=>"Newark", :teamnumber=>"1366", :country=>"USA", :state=>"NJ", :rookieyear=>"2004", :robotname=>"", :name=>"NJIT, Newark Public Schools/The Port Authority of NY & NJ & Newark Public Shcools & West Side High School", :website=>"", :informalname=>"Roughriders"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1367", :city=>"Newark", :teamnumber=>"1367", :country=>"USA", :state=>"NJ", :rookieyear=>"2004", :robotname=>"", :name=>"Barringer High School", :website=>"", :informalname=>"Blue Bears"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1368", :city=>"Clearwater", :teamnumber=>"1368", :country=>"", :state=>" FL", :rookieyear=>"2004", :robotname=>"", :name=>"Raytheon & Countryside High School", :website=>"http://www.firstbots.org", :informalname=>"Clearwater"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1369", :city=>"Tampa", :teamnumber=>"1369", :country=>"USA", :state=>"FL", :rookieyear=>"2004", :robotname=>"", :name=>"Tampa Brass & Aluminum/Tampa Bay Steel/Columbus Technologies and Services/Santa Barbara Applied Research/SkillStorm Inc/Kentucky Fried Chicken & Middleton Magnet High School", :website=>"http://www.team1369.com", :informalname=>"Minotaur"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1370", :city=>"Middletown", :teamnumber=>"1370", :country=>"USA", :state=>"DE", :rookieyear=>"2004", :robotname=>"", :name=>"DuPont Engineering/Big Ball Marathon/ILC Dover, Inc./Friends of Middletown Robotics & Appoquinimink High School & Middletown High School & Appoquinimink School District", :website=>"http://www.team1370.org/", :informalname=>"Thermogenesis formerly known as The Blue Charge"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1371", :city=>"Atlanta", :teamnumber=>"1371", :country=>"", :state=>" GA", :rookieyear=>"2004", :robotname=>"Freddy D", :name=>"Center for Engineering and Applied Technology", :website=>"http://www.douglasshighastros.com", :informalname=>"Cosmic Gold"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1372", :city=>"San Diego", :teamnumber=>"1372", :country=>"USA", :state=>"CA", :rookieyear=>"2004", :robotname=>"", :name=>"Qualcomm & Mira Mesa High School", :website=>"", :informalname=>"Lambda^3"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1373", :city=>"Storrs", :teamnumber=>"1373", :country=>"", :state=>" CT", :rookieyear=>"2004", :robotname=>"", :name=>"E.O.Smith", :website=>"", :informalname=>"Spontaneous Combustion"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1375", :city=>"Aurora", :teamnumber=>"1375", :country=>"", :state=>" CO", :rookieyear=>"2004", :robotname=>"", :name=>"Raytheon Company / Northrop Grumman Corporation / Aurora Public Schools Education Foundation & Aurora Central High School", :website=>"http://www.team1375.com", :informalname=>"Trobots"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1376", :city=>"Snellville", :teamnumber=>"1376", :country=>"", :state=>" GA", :rookieyear=>"2004", :robotname=>"", :name=>"", :website=>"http://www.geocities.com/teamspaceballs/home.html", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1377", :city=>"Thornton", :teamnumber=>"1377", :country=>"USA", :state=>"CO", :rookieyear=>"2004", :robotname=>"Devry Dominators", :name=>"DeVry Univeristy/Ball Aerospace & Technologies Corp & Bollman Center", :website=>"http://www.team1377.com", :informalname=>"BTEC Machines"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1378", :city=>"Hilo", :teamnumber=>"1378", :country=>"", :state=>" HI", :rookieyear=>"2004", :robotname=>"Da Kine", :name=>"Hilo High School & Hilo High School", :website=>"http://www.hilohighrobotics.org", :informalname=>"Eureka"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1379", :city=>"Norcross", :teamnumber=>"1379", :country=>"USA", :state=>"GA", :rookieyear=>"2004", :robotname=>"Blue Streak", :name=>"Boeing/AutoTrader/Nordson Corporation/EMS Technologies/LXE/PMI Atlanta/Women in Technology/ITT Technical Institute & Norcross High School & Gwinnett County Public Schools", :website=>"http://www.geardevils.org", :informalname=>"Gear Devils"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1380", :city=>"Lilburn, GA", :teamnumber=>"1380", :country=>"", :state=>"", :rookieyear=>"2004", :robotname=>"", :name=>"", :website=>"http://robotics.berkmar.com", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1381", :city=>"Colorado Springs, CO", :teamnumber=>"1381", :country=>"", :state=>"", :rookieyear=>"2004", :robotname=>"", :name=>"Harrison High School MESA", :website=>"", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1382", :city=>"Sao Jose dos Campos", :teamnumber=>"1382", :country=>"Brazil", :state=>"SP", :rookieyear=>"2004", :robotname=>"CRTEC-6", :name=>"Johnson & Johnson & ETEP - Prof. E. Passos Technical High School", :website=>"http://www.etepteam.com.br", :informalname=>"ETEP Team"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1383", :city=>"Toronto, ON", :teamnumber=>"1383", :country=>"", :state=>"", :rookieyear=>"2004", :robotname=>"", :name=>"Community Hebrew Academy of Toronto", :website=>"http://N/A", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1384", :city=>"Vineland", :teamnumber=>"1384", :country=>"", :state=>" NJ", :rookieyear=>"2004", :robotname=>"", :name=>"Vineland High School", :website=>"http://www.vinelandrobotics.tk/", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1385", :city=>"Waterloo", :teamnumber=>"1385", :country=>"", :state=>" ON", :rookieyear=>"2004", :robotname=>"", :name=>"", :website=>"http://www.wcirobotics.com", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1386", :city=>"Canton", :teamnumber=>"1386", :country=>"USA", :state=>"OH", :rookieyear=>"2004", :robotname=>"", :name=>"The Timken Company/Leghart & Associates inc./Union Metal/Lockheed Martin/Premier Dental/Rolls-Royce/Graco/IEEE of Akron/ASME & Timken Senior High School", :website=>"http://www.trobots.com", :informalname=>"The Trobots"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1387", :city=>"Fair Oaks, CA", :teamnumber=>"1387", :country=>"", :state=>"", :rookieyear=>"2004", :robotname=>"", :name=>"Sacramento Waldorf School", :website=>"", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1388", :city=>"Arroyo Grande", :teamnumber=>"1388", :country=>"USA", :state=>"CA", :rookieyear=>"2004", :robotname=>"Gyration", :name=>"Melfred Borzall/Pacific Gas & Electric & Arroyo Grande High School Eagle Robotics", :website=>"http://eaglerobotics.com", :informalname=>"Eagle Robotics"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1389", :city=>"Bethesda", :teamnumber=>"1389", :country=>"USA", :state=>"MD", :rookieyear=>"2004", :robotname=>"Robit", :name=>"NASA/National Aeronautics and Space Admininstration/Zeta Associates & Walt Whitman High School", :website=>"http://www.team1389.com", :informalname=>"The Body Electric"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1390", :city=>"St. Cloud & Harmony", :teamnumber=>"1390", :country=>"USA", :state=>"FL", :rookieyear=>"2004", :robotname=>"", :name=>"Harmony High School & Saint Cloud High School", :website=>"", :informalname=>"MEKHEADS"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1391", :city=>"Westtown", :teamnumber=>"1391", :country=>"USA", :state=>"PA", :rookieyear=>"2004", :robotname=>"Moose V", :name=>"Westtown Friends School", :website=>"http://www.westtown.edu/robotics", :informalname=>"the metal moose"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1392", :city=>"Ajax", :teamnumber=>"1392", :country=>"", :state=>" ON", :rookieyear=>"2004", :robotname=>"", :name=>"J. Clarke Richardson Collegiate", :website=>"", :informalname=>"Ajax"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1393", :city=>"Albuquerque, NM", :teamnumber=>"1393", :country=>"", :state=>"", :rookieyear=>"2004", :robotname=>"", :name=>"NASA/Sandia National Labs/Lockheed Martin/Albuquerque JOURNAL", :website=>"http://www.cecrobotics.com", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1394", :city=>"Philadelphia", :teamnumber=>"1394", :country=>"", :state=>" PA", :rookieyear=>"2004", :robotname=>"", :name=>"Mastery High School Robotics", :website=>"http://www.masteryrobotics.org", :informalname=>"Philadelphia"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1395", :city=>"Commerce City, CO", :teamnumber=>"1395", :country=>"", :state=>"", :rookieyear=>"2004", :robotname=>"", :name=>"NASA/Lockheed/Ball/HP/IHS/DU", :website=>"", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1396", :city=>"Staten Island", :teamnumber=>"1396", :country=>"USA", :state=>"NY", :rookieyear=>"2004", :robotname=>"Squeeze Box", :name=>"New York State Senator Andrew Lanza/Port Authority of New York and New Jersey/Bloomberg & Tottenville High School", :website=>"http://www.pyrobots.org", :informalname=>"Pyrobots"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1397", :city=>"Ajax", :teamnumber=>"1397", :country=>"", :state=>" ON", :rookieyear=>"2004", :robotname=>"", :name=>"OPG, /SailRail/Bon-l/Carlyon Drywall & Ajax High School", :website=>"http://www.ajaxhs.com/", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1398", :city=>"Columbia", :teamnumber=>"1398", :country=>"USA", :state=>"SC", :rookieyear=>"2004", :robotname=>"", :name=>"USC College of Engineering/The Challenger Learning Center of Richland County School District One/Square D - Schneider Electric/South Carolina Department of Education/Shakespeare Company/American Association of Blacks in Energy/ITT Technical Institute & W. J. Keenan High School", :website=>"http://student.project-real.org", :informalname=>"Robo-Raiders"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1399", :city=>"Richardson, TX", :teamnumber=>"1399", :country=>"", :state=>"", :rookieyear=>"2004", :robotname=>"", :name=>"University of Texas, Dallas (UTD)/Honeywell & J.J. Pearce High School", :website=>"http://home1.gte.net/res008vc/index.htm", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1400", :city=>"Norwich, CT", :teamnumber=>"1400", :country=>"", :state=>"", :rookieyear=>"2004", :robotname=>"", :name=>"Norwich Free Academy", :website=>"", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1401", :city=>"Naucalpan", :teamnumber=>"1401", :country=>"", :state=>" MEX", :rookieyear=>"2004", :robotname=>"", :name=>"Laureate/FESTO Neumatics & Universidad del Valle de Mexico", :website=>"http://www.geocities.com/mechanikatz/Mechanikatz.html", :informalname=>"Naucalpan"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1402", :city=>"Orlando", :teamnumber=>"1402", :country=>"", :state=>" FL", :rookieyear=>"2004", :robotname=>"", :name=>"DeVry University/Phu Space/Walt Disney world & Freedom High School", :website=>"", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1403", :city=>"Skillman", :teamnumber=>"1403", :country=>"USA", :state=>"NJ", :rookieyear=>"2004", :robotname=>"", :name=>"Bristol-Myers Squibb/Convatec & Montgomery High School", :website=>"http://www.team1403.net", :informalname=>"Cougar Robotics"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1404", :city=>"Toronto", :teamnumber=>"1404", :country=>"Canada", :state=>"ON", :rookieyear=>"2004", :robotname=>"", :name=>"TDSB & Dr Norman Bethune CI", :website=>"", :informalname=>"Shocks"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1405", :city=>"Penfield", :teamnumber=>"1405", :country=>"USA", :state=>"NY", :rookieyear=>"2004", :robotname=>"Charlie V", :name=>"Roberts Wesleyan College / Hoselton & The Charles Finney High School", :website=>"", :informalname=>"[email protected]"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1406", :city=>"Roswell, GA", :teamnumber=>"1406", :country=>"", :state=>"", :rookieyear=>"2004", :robotname=>"", :name=>"NASA", :website=>"", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1407", :city=>"Winder", :teamnumber=>"1407", :country=>"", :state=>" GA", :rookieyear=>"2004", :robotname=>"", :name=>"", :website=>"http://www.ahstechnology.com", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1408", :city=>"Edgewater", :teamnumber=>"1408", :country=>"USA", :state=>"CO", :rookieyear=>"2004", :robotname=>"", :name=>"Jefferson High School", :website=>"", :informalname=>"The Saintinators"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1409", :city=>"Great Barrington, MA", :teamnumber=>"1409", :country=>"", :state=>"", :rookieyear=>"2004", :robotname=>"", :name=>"LEGO & Simon's Rock College", :website=>"", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1410", :city=>"Denver", :teamnumber=>"1410", :country=>"USA", :state=>"CO", :rookieyear=>"2004", :robotname=>"Patribot", :name=>"George Washington High School", :website=>"", :informalname=>"Patribot"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1411", :city=>"Brampton, ON", :teamnumber=>"1411", :country=>"", :state=>"", :rookieyear=>"2004", :robotname=>"", :name=>"Industrial Machine Services (IMS)", :website=>"http://www.tfcrobotics.tk", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1412", :city=>"Hackensack", :teamnumber=>"1412", :country=>"", :state=>" NJ", :rookieyear=>"2004", :robotname=>"", :name=>"Mercedes Benz USA & Hackensack High School", :website=>"http://site2.hackensackschools.org", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1413", :city=>"Skipwith", :teamnumber=>"1413", :country=>"USA", :state=>"VA", :rookieyear=>"2004", :robotname=>"Skrappy", :name=>"Clarksville Ruritans / Mecklenburg Electric Co operative & Mecklenburg County Public Schools", :website=>"http://www.bluestonefirstrobotics.com", :informalname=>"Skrappy's Crew"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1414", :city=>"Atlanta", :teamnumber=>"1414", :country=>"USA", :state=>"GA", :rookieyear=>"2004", :robotname=>"", :name=>"Clyde Bergemann & Atlanta International School", :website=>"http://www.ihotrobotics.org", :informalname=>"iHOT"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1415", :city=>"Columbus", :teamnumber=>"1415", :country=>"USA", :state=>"GA", :rookieyear=>"2004", :robotname=>"Cheez", :name=>"Columbus Technical College & Northside High School", :website=>"http://www.picturemewords.com/firstrobotics", :informalname=>"The Flying Pumpkins"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1416", :city=>"Redmond, WA", :teamnumber=>"1416", :country=>"", :state=>"", :rookieyear=>"2004", :robotname=>"", :name=>"NASA", :website=>"http://www.overlake.org/Robotics/index.htm", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1417", :city=>"Roanoke", :teamnumber=>"1417", :country=>"", :state=>" VA", :rookieyear=>"2004", :robotname=>"", :name=>"", :website=>"http://www.rcs.k12.va.us/hvhs/activity/First%20robotics%202004.htm", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1418", :city=>"Falls Church", :teamnumber=>"1418", :country=>"USA", :state=>"VA", :rookieyear=>"2004", :robotname=>"", :name=>"SAIC (Science Applications International Corp / Aurora Flight Sciences / BAE Systems / Falls Church City Television / StreetSmart Digital Solutions, LLC & George Mason High School", :website=>"http://www.team1418.org", :informalname=>"Vae Victus"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1419", :city=>"Courtice", :teamnumber=>"1419", :country=>"", :state=>" ON", :rookieyear=>"2004", :robotname=>"", :name=>"Ontario Power Generation & Courtice Secondary School", :website=>"http://courseweb.interarts.ca/course/view.php?id=9", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1420", :city=>"Baltimore, MD", :teamnumber=>"1420", :country=>"", :state=>"", :rookieyear=>"2004", :robotname=>"", :name=>"NASA/Sylvan Learning Center/Prism Technical Mgmt & Mktg/Home Depot", :website=>"", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1421", :city=>"Picayune", :teamnumber=>"1421", :country=>"USA", :state=>"MS", :rookieyear=>"2004", :robotname=>"Basket~Case", :name=>"NASA/Picayune Eye Clinic & Picayune High School & Pearl River Central High School", :website=>"http://picayunerobotics.datastar.net", :informalname=>"Team Chaos"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1422", :city=>"Clovis", :teamnumber=>"1422", :country=>"", :state=>" CA", :rookieyear=>"2004", :robotname=>"", :name=>"CSUF/Grundfos/Pelco & CART", :website=>"http://cad.cart.org/", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1423", :city=>"Chatham, NJ", :teamnumber=>"1423", :country=>"", :state=>"", :rookieyear=>"2004", :robotname=>"", :name=>"Honeywell & Chatham High School", :website=>"", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1424", :city=>"Wyncote, PA", :teamnumber=>"1424", :country=>"", :state=>"", :rookieyear=>"2004", :robotname=>"", :name=>"Bishop McDevitt High School", :website=>"http://www.mcdevitths.org", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1425", :city=>"Wilsonville", :teamnumber=>"1425", :country=>"USA", :state=>"OR", :rookieyear=>"2004", :robotname=>"Whomper", :name=>"Xerox & Wilsonville High School", :website=>"http://wilsonvillerobotics.com", :informalname=>"Error Code Xero"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1426", :city=>"Las Cruces", :teamnumber=>"1426", :country=>"", :state=>" NM", :rookieyear=>"2004", :robotname=>"", :name=>"", :website=>"", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1427", :city=>"Reno, NV", :teamnumber=>"1427", :country=>"", :state=>"", :rookieyear=>"2004", :robotname=>"", :name=>"", :website=>"", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1428", :city=>"Zuni", :teamnumber=>"1428", :country=>"", :state=>" NM", :rookieyear=>"2004", :robotname=>"", :name=>"Zuni High School", :website=>"", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1429", :city=>"Galena Park", :teamnumber=>"1429", :country=>"USA", :state=>"TX", :rookieyear=>"2004", :robotname=>"", :name=>"GE Volunteers/Woven Metal Products/VICO Mfg/Houston Robotics & Galena Park High School", :website=>"http://www.galenaparkisd.com/campuspages/gphs_campus/index_006.html", :informalname=>"TEAM KAOS"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1430", :city=>"Anchorage", :teamnumber=>"1430", :country=>"", :state=>" AK", :rookieyear=>"2004", :robotname=>"", :name=>"", :website=>"http://www.wrong.tk", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1432", :city=>"Portland", :teamnumber=>"1432", :country=>"USA", :state=>"OR", :rookieyear=>"2004", :robotname=>"Number 6", :name=>"Boeing & Franklin High School", :website=>"http://team1432.org", :informalname=>"Franklin Robotics"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1433", :city=>"Newberg, OR", :teamnumber=>"1433", :country=>"", :state=>"", :rookieyear=>"2004", :robotname=>"", :name=>"NASA & Newberg High School", :website=>"", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1434", :city=>"Clarkdale, AZ", :teamnumber=>"1434", :country=>"", :state=>"", :rookieyear=>"2004", :robotname=>"", :name=>"Bent River Machine & Valley Academy for Career & Technology Education", :website=>"", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1435", :city=>"Maryland Heights", :teamnumber=>"1435", :country=>"", :state=>" MO", :rookieyear=>"2004", :robotname=>"", :name=>"", :website=>"http://phs.psdr3.org", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1436", :city=>"Fort Mill", :teamnumber=>"1436", :country=>"USA", :state=>"SC", :rookieyear=>"2004", :robotname=>"", :name=>"Black & Decker & Fort Mill High School", :website=>"http://www.pltw-fmhs.org", :informalname=>"Jackets"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1437", :city=>"St. Louis", :teamnumber=>"1437", :country=>"", :state=>" MO", :rookieyear=>"2004", :robotname=>"", :name=>"General Motors Foundation/Val-Tec Hydraulics, Inc & Riverview Gardens", :website=>"http://www.robotrams1437.org", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1438", :city=>"Anaheim", :teamnumber=>"1438", :country=>"USA", :state=>"CA", :rookieyear=>"2004", :robotname=>"Aztech Warrior 6", :name=>"Boeing/MAES/Raytheon & Anaheim High School", :website=>"http://anaheim.auhsd.k12.ca.us/robotics/?rn=4987", :informalname=>"The A Team"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1439", :city=>"Atlanta", :teamnumber=>"1439", :country=>"USA", :state=>"GA", :rookieyear=>"2004", :robotname=>"", :name=>"Arthur M. Blank Foundation/NASA/WIT & Benjamin E. Mays High School", :website=>"", :informalname=>"The Innovators"}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1440", :city=>"Savannah", :teamnumber=>"1440", :country=>"", :state=>" GA", :rookieyear=>"2004", :robotname=>"", :name=>"", :website=>"http://www.lopatta.us/robotics", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1441", :city=>"Bellevue", :teamnumber=>"1441", :country=>"", :state=>" WA", :rookieyear=>"2004", :robotname=>"", :name=>"", :website=>"", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1442", :city=>"Juarez, CI", :teamnumber=>"1442", :country=>"", :state=>"", :rookieyear=>"2004", :robotname=>"", :name=>"Johnson and Johnson & Preparatoria Chamizal", :website=>"http://www.usuarios.lycos.es/ehecatlrobotics/", :informalname=>""}
{:tba_link=>"http://www.thebluealliance.net/tbatv/team.php?team=1443", :city=>"Cupertino, CA", :teamnumber=>"1443", :country=>"", :state=>"", :rookieyear=>"2004", :robotname=>"", :name=>"Lynbrook High School", :website=>"", :informalname=>""}